diff options
author | Paul B Mahol <onemda@gmail.com> | 2016-03-03 20:44:38 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2016-03-03 21:05:39 +0100 |
commit | 768734a0ff248d2da1e27d8faa52cb7301286f82 (patch) | |
tree | 9b839e9aeb3dd30e0f75bc3e300566eb73433f1b /doc/filters.texi | |
parent | df4b5f076e67a537931b0ebea111fc9a15c6378b (diff) | |
download | ffmpeg-768734a0ff248d2da1e27d8faa52cb7301286f82.tar.gz |
avfilter/vf_vectorscope: add threshold option
Useful to only display lows/mids/highs.
Signed-off-by: Paul B Mahol <onemda@gmail.com>
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 a1591c628c..4ec7507044 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -12639,6 +12639,20 @@ Draw graticule for black point. @item bgopacity, b Set background opacity. + +@item lthreshold, l +Set low threshold for color component not represented on X or Y axis. +Values lower than this value will be ignored. Default is 0. +Note this value is multiplied with actual max possible value one pixel component +can have. So for 8-bit input and low threshold value of 0.1 actual threshold +is 0.1 * 255 = 25. + +@item hthreshold, h +Set high threshold for color component not represented on X or Y axis. +Values higher than this value will be ignored. Default is 1. +Note this value is multiplied with actual max possible value one pixel component +can have. So for 8-bit input and high threshold value of 0.9 actual threshold +is 0.9 * 255 = 230. @end table @anchor{vidstabdetect} |