diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-01-15 11:32:49 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-10-29 10:56:04 +0100 |
commit | 1c3b70e2e078bf0901b3af5491f923818809de37 (patch) | |
tree | b97e20f26684a6859c03a1ea52f8ad74ef14729c /doc/filters.texi | |
parent | 68f623d64451a6ee8c81b6071ec68d6097c0f213 (diff) | |
download | ffmpeg-1c3b70e2e078bf0901b3af5491f923818809de37.tar.gz |
avfilter: add median filter
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 5b8062d806..c4477e6677 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -12805,6 +12805,21 @@ Higher values should result in a smoother motion vector field but less optimal individual vectors. Default value is 1. @end table +@section median + +Pick median pixel from certain rectangle defined by radius. + +This filter accepts the following options: + +@table @option +@item radius +Set horizontal and vertical radius size. Default value is @code{1}. +Allowed range is integer from 1 to 127. + +@item planes +Set which planes to process. Default is @code{15}, which is all available planes. +@end table + @section mergeplanes Merge color channel components from several video streams. |