diff options
author | Paul B Mahol <onemda@gmail.com> | 2016-12-22 21:45:24 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2016-12-22 21:51:44 +0100 |
commit | fdcb7a85cf2aed85ba5a315440051f88e08bc6f5 (patch) | |
tree | 5a7a59c760665293119dad242527e72e37f0c292 /doc/filters.texi | |
parent | 47cd8effea343e71c4010929ed3fb10dd3dca4b1 (diff) | |
download | ffmpeg-fdcb7a85cf2aed85ba5a315440051f88e08bc6f5.tar.gz |
avfilter/vf_deband: add planes coupling mode
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 62e5db6cee..6ad2db2728 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -6203,11 +6203,16 @@ absolute value will be picked. For example direction 0, -PI or -2*PI radians will pick only pixels on same row and -PI/2 will pick only pixels on same column. -@item blur +@item blur, b If enabled, current pixel is compared with average value of all four surrounding pixels. The default is enabled. If disabled current pixel is compared with all four surrounding pixels. The pixel is considered banded if only all four differences with surrounding pixels are less than threshold. + +@item coupling, c +If enabled, current pixel is changed if and only if all pixel components are banded, +e.g. banding detection threshold is triggered for all color components. +The default is disabled. @end table @anchor{decimate} |