Re: [FFmpeg-devel] [PATCH] avfilter/vf_guided: support enhanced guided filter

2021-10-23 Thread Paul B Mahol
On Sat, Oct 23, 2021 at 4:56 AM Xuewei Meng wrote: > I would like to explain the supported modes in the guided filter, > (1) Basic mode shows better denoising performance compared to bilateral > filter and can be applied in many applications such as detail enhancement, > dehazing, and so on,

Re: [FFmpeg-devel] [PATCH] avfilter/vf_guided: support enhanced guided filter

2021-10-23 Thread Xuewei Meng
I would like to explain the supported modes in the guided filter, (1) Basic mode shows better denoising performance compared to bilateral filter and can be applied in many applications such as detail enhancement, dehazing, and so on, which is illustrated in paper http://kaiminghe.com/eccv10/. (2)

Re: [FFmpeg-devel] [PATCH] avfilter/vf_guided: support enhanced guided filter

2021-10-22 Thread Paul B Mahol
On Wed, Oct 13, 2021 at 3:57 PM Paul B Mahol wrote: > Why this filter is being applied at first place at all? > > It is extraordinary slow and used very slow algorithm and reallocates > memory all the time. > Additionally so called fast mode, which is indeed faster than bilateral filter, is

Re: [FFmpeg-devel] [PATCH] avfilter/vf_guided: support enhanced guided filter

2021-10-13 Thread Paul B Mahol
Why this filter is being applied at first place at all? It is extraordinary slow and used very slow algorithm and reallocates memory all the time. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To

[FFmpeg-devel] [PATCH] avfilter/vf_guided: support enhanced guided filter

2021-08-20 Thread Xuewei Meng
From: Xuewei Meng Enhanced guided filter and fast enhanced guided filter are supported. The enhanced guided filter can better preserve edges for denoising tasks. And the box filter operation is optimized. Signed-off-by: Xuewei Meng --- doc/filters.texi| 6 +- libavfilter/vf_guided.c