Re: [FFmpeg-devel] [PATCH] libavfilter: Add derain filter Changelog

2019-06-10 Thread Hendrik Leppkes
On Mon, Jun 10, 2019 at 12:46 PM Xuewei Meng wrote: > > Signed-off-by: Xuewei Meng > --- > Changelog | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Changelog b/Changelog > index 1facc1fc46..b60aa5dd0b 100644 > --- a/Changelog > +++ b/Changelog > @@ -31,7 +31,7 @@

[FFmpeg-devel] [PATCH] libavfilter: Add derain filter Changelog

2019-06-10 Thread Xuewei Meng
Signed-off-by: Xuewei Meng --- Changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Changelog b/Changelog index 1facc1fc46..b60aa5dd0b 100644 --- a/Changelog +++ b/Changelog @@ -31,7 +31,7 @@ version : - xmedian filter - asr filter - showspatial multimedia filter - +-

Re: [FFmpeg-devel] [PATCH] libavfilter: Add derain filter.

2019-05-26 Thread myp...@gmail.com
On Fri, May 24, 2019 at 8:40 PM Xuewei Meng wrote: > > 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

[FFmpeg-devel] [PATCH] libavfilter: Add derain filter.

2019-05-24 Thread Xuewei Meng
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 ---

Re: [FFmpeg-devel] [PATCH] libavfilter: Add derain filter init version--GSoC Qualification Task.

2019-04-11 Thread Pedro Arthur
Em qui, 11 de abr de 2019 às 02:55, escreveu: > > We made some modifications on the original ESPCN model, such as change the > input image from one channel(Y) to three channels(RGB) and remove the > up-sampling procedure. The model file has been uploaded in >

Re: [FFmpeg-devel] [PATCH] libavfilter: Add derain filter init version--GSoC Qualification Task.

2019-04-11 Thread Liu Steven
> 在 2019年4月11日,下午1:46,xwm...@pku.edu.cn 写道: > > > > >> -原始邮件- >> 发件人: "Liu Steven" >> 发送时间: 2019-04-09 16:00:25 (星期二) >> 收件人: "FFmpeg development discussions and patches" >> 抄送: "Liu Steven" >> 主题:

Re: [FFmpeg-devel] [PATCH] libavfilter: Add derain filter init version--GSoC Qualification Task.

2019-04-10 Thread xwmeng
> -原始邮件- > 发件人: "Pedro Arthur" > 发送时间: 2019-04-11 00:12:09 (星期四) > 收件人: "FFmpeg development discussions and patches" > 抄送: > 主题: Re: [FFmpeg-devel] [PATCH] libavfilter: Add derain filter init > version--GSoC Qualification Task. > > Hi,

Re: [FFmpeg-devel] [PATCH] libavfilter: Add derain filter init version--GSoC Qualification Task.

2019-04-10 Thread xwmeng
> -原始邮件- > 发件人: "Liu Steven" > 发送时间: 2019-04-09 16:00:25 (星期二) > 收件人: "FFmpeg development discussions and patches" > 抄送: "Liu Steven" > 主题: Re: [FFmpeg-devel] [PATCH] libavfilter: Add derain filter init > version--GSoC Qual

Re: [FFmpeg-devel] [PATCH] libavfilter: Add derain filter init version--GSoC Qualification Task.

2019-04-10 Thread Pedro Arthur
Hi, Em ter, 9 de abr de 2019 às 22:42, escreveu: > > Yes, I use the espcn model for deraining as the initial version as it's a > easier way to implement the filter, although the paper proposes it for > super-resolution. And the model does have some effect on deraining project. > While, it is

Re: [FFmpeg-devel] [PATCH] libavfilter: Add derain filter init version--GSoC Qualification Task.

2019-04-09 Thread xwmeng
星期三) > 收件人: "FFmpeg development discussions and patches" > 抄送: "Steven Liu" > 主题: Re: [FFmpeg-devel] [PATCH] libavfilter: Add derain filter init > version--GSoC Qualification Task. > > Hi, > > Em ter, 9 de abr de 2019 às 04:15, escreveu: > > +@section d

Re: [FFmpeg-devel] [PATCH] libavfilter: Add derain filter init version--GSoC Qualification Task.

2019-04-09 Thread Pedro Arthur
Em ter, 9 de abr de 2019 às 04:15, escreveu: > > +Training scripts as well as scripts for model generation are provided in > +the repository at @url{https://github.com/XueweiMeng/derain_filter.git}. This repository is a copy of a previous year student [1], which is MIT licensed, and therefore

Re: [FFmpeg-devel] [PATCH] libavfilter: Add derain filter init version--GSoC Qualification Task.

2019-04-09 Thread Pedro Arthur
Hi, Em ter, 9 de abr de 2019 às 04:15, escreveu: > +@section derain > + > +Remove the rain in the input image/video by applying the derain methods > based on > +convolutional neural networks. Supported models: > + > +@itemize > +@item > +Efficient Sub-Pixel Convolutional Neural Network model

Re: [FFmpeg-devel] [PATCH] libavfilter: Add derain filter init version--GSoC Qualification Task.

2019-04-09 Thread Liu Steven
> 在 2019年4月9日,下午3:14,xwm...@pku.edu.cn 写道: > > This patch is the qualification task of the derain filter project in GSoC. > It maybe better if you submit a model file and test example here. > From 61463dfe14c0e0de4e233f68c8404d73d5bd9f8f Mon Sep 17 00:00:00 2001 > > From: Xuewei Meng >

Re: [FFmpeg-devel] [PATCH] libavfilter: Add derain filter init version--GSoC Qualification Task.

2019-04-09 Thread Guo, Yejun
> -Original Message- > From: ffmpeg-devel [mailto:ffmpeg-devel-boun...@ffmpeg.org] On Behalf > Of xwm...@pku.edu.cn > Sent: Tuesday, April 09, 2019 3:15 PM > To: ffmpeg-devel@ffmpeg.org > Cc: l...@chinaffmpeg.org > Subject: [FFmpeg-devel] [PATCH] libavfilter: A

[FFmpeg-devel] [PATCH] libavfilter: Add derain filter init version--GSoC Qualification Task.

2019-04-09 Thread xwmeng
This patch is the qualification task of the derain filter project in GSoC. From 61463dfe14c0e0de4e233f68c8404d73d5bd9f8f Mon Sep 17 00:00:00 2001 From: Xuewei Meng Date: Tue, 9 Apr 2019 15:09:33 +0800 Subject: [PATCH] Add derain filter init version-GSoC Qualification Task Signed-off-by: