summaryrefslogtreecommitdiff
path: root/doc/filters.texi
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2020-04-13 16:12:50 +0200
committerPaul B Mahol <onemda@gmail.com>2020-04-18 12:34:49 +0200
commit9987f6d01e6d50eba378b64b890a6f5885e27989 (patch)
tree1d039c3b598ecddd1198a1f91e5df59c0f132c67 /doc/filters.texi
parent55d830f69a2ff3ca191d97862200d4cc480d25b7 (diff)
avfilter: add tmedian filter
Diffstat (limited to 'doc/filters.texi')
-rw-r--r--doc/filters.texi19
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index a17f3cb837..cc09fee5dd 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -18382,6 +18382,25 @@ enabled for @option{mode} @var{interleave_top} and @var{interleave_bottom}.
@end table
+@section tmedian
+Pick median pixels from several successive input video frames.
+
+The filter accepts the following options:
+
+@table @option
+@item radius
+Set radius of median filter.
+Default is 1. Allowed range is from 1 to 127.
+
+@item planes
+Set which planes to filter. Default value is @code{15}, by which all planes are processed.
+
+@item percentile
+Set median percentile. Default value is @code{0.5}.
+Default value of @code{0.5} will pick always median values, while @code{0} will pick
+minimum values, and @code{1} maximum values.
+@end table
+
@section tmix
Mix successive video frames.