diff options
author | Leo Izen <leo.izen@gmail.com> | 2017-09-03 05:01:13 -0400 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2017-09-03 13:02:24 +0200 |
commit | dda1c23c20d727b7b9dbe1121cc63c2ba54f51ff (patch) | |
tree | b780f7aa94b64e3062c6b07cf1fb69b3c5852ec2 | |
parent | b4b1285fa1b6b84cc68cad67e7ea1389863cd178 (diff) | |
download | ffmpeg-dda1c23c20d727b7b9dbe1121cc63c2ba54f51ff.tar.gz |
doc/filters.texi: Add default values to vf_vaguedenoiser options
-rw-r--r-- | doc/filters.texi | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index afcb99d876..c898c43557 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -14911,7 +14911,7 @@ This filter accepts the following options: @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. +before the video looks overfiltered. Default value is 2. @item method The filtering method the filter will use. @@ -14930,13 +14930,15 @@ Scales or nullifies coefficients - intermediary between (more) soft and (less) hard thresholding. @end table +Default is garrote. + @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) +frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6. @item percent -Partial of full denoising (limited coefficients shrinking), from 0 to 100. +Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85. @item planes A list of the planes to process. By default all planes are processed. |