diff options
author | Paul B Mahol <onemda@gmail.com> | 2016-08-24 22:13:03 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2016-08-26 23:17:19 +0200 |
commit | 0429ff4be674b1a50c6301f1f7a23a4879cb0dcd (patch) | |
tree | cd156e13c74a3fd2c3db1fcf14f55efcd56cb250 /doc/filters.texi | |
parent | 0c7979b43d5b71949c75bdb92488b152d1be74ed (diff) | |
download | ffmpeg-0429ff4be674b1a50c6301f1f7a23a4879cb0dcd.tar.gz |
avfilter: add vaguedenoiser filter
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 4ae749b246..15300d8fdc 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -13379,6 +13379,53 @@ Force a constant quantization parameter. If not set, the filter will use the QP from the video stream (if available). @end table +@section vaguedenoiser + +Apply a wavelet based denoiser. + +It transforms each frame from the video input into the wavelet domain, +using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to +the obtained coefficients. It does an inverse wavelet transform after. +Due to wavelet properties, it should give a nice smoothed result, and +reduced noise, without blurring picture features. + +This filter accepts the following options: + +@table @option +@item threshold +The filtering strength. The higher, the more filtered the video will be. +Hard thresholding can use a higher threshold than soft thresholding +before the video looks overfiltered. + +@item method +The filtering method the filter will use. + +It accepts the following values: +@table @samp +@item hard +All values under the threshold will be zeroed. + +@item soft +All values under the threshold will be zeroed. All values above will be +reduced by the threshold. + +@item garrote +Scales or nullifies coefficients - intermediary between (more) soft and +(less) hard thresholding. +@end table + +@item nsteps +Number of times, the wavelet will decompose the picture. Picture can't +be decomposed beyond a particular point (typically, 8 for a 640x480 +frame - as 2^9 = 512 > 480) + +@item percent +Partial of full denoising (limited coefficients shrinking), from 0 to 100. + +@item planes +A list of the planes to process. By default all planes are processed. +@end table + @section vectorscope Display 2 color component values in the two dimensional graph (which is called |