diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-10-20 20:16:18 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-10-24 20:54:33 +0200 |
commit | f166951d6e32d2776373721bc262d338c44a5d81 (patch) | |
tree | 7f126c3e1dd361df1159d681baa2df505c51448f /doc/filters.texi | |
parent | 262eef6b899ca39f80296e6eb701e895549d8a83 (diff) | |
download | ffmpeg-f166951d6e32d2776373721bc262d338c44a5d81.tar.gz |
avfilter: add maskedmin/maskedmax filters
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 7400e7dd31..32c2c885d8 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -12672,6 +12672,22 @@ copied from first stream. By default value 0xf, all planes will be processed. @end table +@section maskedmax + +Merge the second and third input stream into output stream using absolute differences +between second input stream and first input stream and absolute difference between +third input stream and first input stream. The picked value will be from second input +stream if second absolute difference is greater than first one or from third input stream +otherwise. + +This filter accepts the following options: +@table @option +@item planes +Set which planes will be processed as bitmap, unprocessed planes will be +copied from first stream. +By default value 0xf, all planes will be processed. +@end table + @section maskedmerge Merge the first input stream with the second input stream using per pixel @@ -12691,6 +12707,22 @@ copied from first stream. By default value 0xf, all planes will be processed. @end table +@section maskedmin + +Merge the second and third input stream into output stream using absolute differences +between second input stream and first input stream and absolute difference between +third input stream and first input stream. The picked value will be from second input +stream if second absolute difference is less than first one or from third input stream +otherwise. + +This filter accepts the following options: +@table @option +@item planes +Set which planes will be processed as bitmap, unprocessed planes will be +copied from first stream. +By default value 0xf, all planes will be processed. +@end table + @section maskfun Create mask from input video. |