diff options
author | Xuewei Meng <xwmeng96@gmail.com> | 2019-05-30 20:35:17 +0800 |
---|---|---|
committer | Steven Liu <lq@chinaffmpeg.org> | 2019-06-06 13:59:43 +0800 |
commit | 78e1d7f42110aec8d4cd703a7939c64b5a191952 (patch) | |
tree | 4d1dd0f47950907ff88cc8645f71ac64de8723ae /libavfilter/Makefile | |
parent | 3be44900144267f657d935c31130d9377d8a722b (diff) | |
download | ffmpeg-streaming-78e1d7f42110aec8d4cd703a7939c64b5a191952.zip ffmpeg-streaming-78e1d7f42110aec8d4cd703a7939c64b5a191952.tar.gz |
libavfilter: Add derain filter
Remove the rain in the input image/video by applying the derain
methods based on convolutional neural networks. Training scripts
as well as scripts for model generation are provided in the
repository at https://github.com/XueweiMeng/derain_filter.git.
Signed-off-by: Xuewei Meng <xwmeng96@gmail.com>
Diffstat (limited to 'libavfilter/Makefile')
-rw-r--r-- | libavfilter/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index a99362b..07ea8d7 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -200,6 +200,7 @@ OBJS-$(CONFIG_DCTDNOIZ_FILTER) += vf_dctdnoiz.o OBJS-$(CONFIG_DEBAND_FILTER) += vf_deband.o OBJS-$(CONFIG_DEBLOCK_FILTER) += vf_deblock.o OBJS-$(CONFIG_DECIMATE_FILTER) += vf_decimate.o +OBJS-$(CONFIG_DERAIN_FILTER) += vf_derain.o OBJS-$(CONFIG_DECONVOLVE_FILTER) += vf_convolve.o framesync.o OBJS-$(CONFIG_DEDOT_FILTER) += vf_dedot.o OBJS-$(CONFIG_DEFLATE_FILTER) += vf_neighbor.o |