diff options
author | Paul B Mahol <onemda@gmail.com> | 2020-06-07 15:10:03 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2020-06-07 15:20:25 +0200 |
commit | bd6336b9702fc36683acda9ef1d70a6b038d179c (patch) | |
tree | e5e1311ffe29d3f1f9238589e0bf9436c7ef14bf /doc/filters.texi | |
parent | 6c57b0d63ac9b7a14012b8a00650d4fafbc18dc5 (diff) | |
download | ffmpeg-bd6336b9702fc36683acda9ef1d70a6b038d179c.tar.gz |
avfilter/vf_vaguedenoiser: add new type of threshold
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index f76604c51e..84567dec16 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -19476,6 +19476,20 @@ Partial of full denoising (limited coefficients shrinking), from 0 to 100. Defau @item planes A list of the planes to process. By default all planes are processed. + +@item type +The threshold type the filter will use. + +It accepts the following values: +@table @samp +@item universal +Threshold used is same for all decompositions. + +@item bayes +Threshold used depends also on each decomposition coefficients. +@end table + +Default is universal. @end table @section vectorscope |