Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2020-04-15 13:10:30 +0300
committerPaul B Mahol <onemda@gmail.com>2020-04-18 13:34:49 +0300
commit4457f75c65cbc4cabdedc890b78d2ecf1bb8ccdd (patch)
treebc507017eb44d8d2877d98364ca3e672b7fbffd1 /doc
parent9987f6d01e6d50eba378b64b890a6f5885e27989 (diff)
avfilter: add maskedthreshold filter
Diffstat (limited to 'doc')
-rw-r--r--doc/filters.texi21
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index cc09fee5dd..80c33f5edb 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -13258,6 +13258,27 @@ copied from first stream.
By default value 0xf, all planes will be processed.
@end table
+@section maskedthreshold
+Pick pixels comparing absolute difference of two video streams with fixed
+threshold.
+
+If absolute difference between pixel component of first and second video
+stream is equal or lower than user supplied threshold than pixel component
+from first video stream is picked, otherwise pixel component from second
+video stream is picked.
+
+This filter accepts the following options:
+@table @option
+@item threshold
+Set threshold used when picking pixels from absolute difference from two input
+video streams.
+
+@item planes
+Set which planes will be processed as bitmap, unprocessed planes will be
+copied from second stream.
+By default value 0xf, all planes will be processed.
+@end table
+
@section maskfun
Create mask from input video.