diff options
author | Paul B Mahol <onemda@gmail.com> | 2017-12-25 15:59:44 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2017-12-27 11:54:22 +0100 |
commit | 8c9a91ac82b9be729fc37d7bdc69608b3c70a5aa (patch) | |
tree | 4caea7c71966aaa083693be95731988906d810c2 /doc | |
parent | 87f148d526348a591716c66c40b3c294880ffc63 (diff) | |
download | ffmpeg-8c9a91ac82b9be729fc37d7bdc69608b3c70a5aa.tar.gz |
avfilter: add deconvolve filter
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.texi | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 45515966e8..f651f1234d 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -6937,6 +6937,29 @@ Set whether or not chroma is considered in the metric calculations. Default is @code{1}. @end table +@section deconvolve + +Apply 2D deconvolution of video stream in frequency domain using second stream +as impulse. + +The filter accepts the following options: + +@table @option +@item planes +Set which planes to process. + +@item impulse +Set which impulse video frames will be processed, can be @var{first} +or @var{all}. Default is @var{all}. + +@item noise +Set noise when doing divisions. Default is @var{0.0000001}. Useful when width +and height are not same and not power of 2 or if stream prior to convolving +had noise. +@end table + +The @code{deconvolve} filter also supports the @ref{framesync} options. + @section deflate Apply deflate effect to the video. |