1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
<?xml version="1.0"?>
<!DOCTYPE kpartgui>
<effect xmlns="https://www.kdenlive.org" tag="avfilter.dilation" id="avfilter.dilation">
<name>Dilation</name>
<description><![CDATA[Apply dilation effect.<br>
Simulates image dilation, an effect which will enlarge the lightest pixels in the image by replacing the pixel by the local (3x3) maximum.]]></description>
<author>libavfilter</author>
<parameter type="constant" name="av.threshold0" max="65535" min="0" default="65535" factor="1">
<name>1st Plane Threshold</name>
<comment><![CDATA[Limit the maximum change for each plane.<br>
Default is 65535. If 0, plane will remain unchanged.]]></comment>
</parameter>
<parameter type="constant" name="av.threshold1" max="65535" min="0" default="65535" factor="1">
<name>2nd Plane Threshold</name>
<comment><![CDATA[Limit the maximum change for each plane.<br>
Default is 65535. If 0, plane will remain unchanged.]]></comment>
</parameter>
<parameter type="constant" name="av.threshold2" max="65535" min="0" default="65535" factor="1">
<name>3rd Plane Threshold</name>
<comment><![CDATA[Limit the maximum change for each plane.<br>
Default is 65535. If 0, plane will remain unchanged.]]></comment>
</parameter>
<parameter type="constant" name="av.threshold3" max="65535" min="0" default="65535" factor="1">
<name>4th Plane Threshold</name>
<comment><![CDATA[Limit the maximum change for each plane.<br>
Default is 65535. If 0, plane will remain unchanged.]]></comment>
</parameter>
<parameter type="constant" name="av.coordinates" max="255" min="0" default="255" factor="1">
<name>Coordinates</name>
<comment><![CDATA[Flag which specifies the pixel to refer to.<br>
Default is 255 i.e. all eight pixels are used. Flags to local 3x3 coordinates maps like this: 1 2 3 4 5 6 7 8]]></comment>
</parameter>
</effect>
|