FFmpeg
vf_derain.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019 Xuewei Meng
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 /**
22  * @file
23  * Filter implementing image derain filter using deep convolutional networks.
24  * http://openaccess.thecvf.com/content_ECCV_2018/html/Xia_Li_Recurrent_Squeeze-and-Excitation_Context_ECCV_2018_paper.html
25  */
26 
27 #include "libavformat/avio.h"
28 #include "libavutil/opt.h"
29 #include "avfilter.h"
30 #include "dnn_interface.h"
31 #include "formats.h"
32 #include "internal.h"
33 
34 typedef struct DRContext {
35  const AVClass *class;
36 
43 } DRContext;
44 
45 #define CLIP(x, min, max) (x < min ? min : (x > max ? max : x))
46 #define OFFSET(x) offsetof(DRContext, x)
47 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM
48 static const AVOption derain_options[] = {
49  { "dnn_backend", "DNN backend", OFFSET(backend_type), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, FLAGS, "backend" },
50  { "native", "native backend flag", 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, 0, 0, FLAGS, "backend" },
51 #if (CONFIG_LIBTENSORFLOW == 1)
52  { "tensorflow", "tensorflow backend flag", 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, 0, 0, FLAGS, "backend" },
53 #endif
54  { "model", "path to model file", OFFSET(model_filename), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, FLAGS },
55  { NULL }
56 };
57 
58 AVFILTER_DEFINE_CLASS(derain);
59 
61 {
63  const enum AVPixelFormat pixel_fmts[] = {
66  };
67 
68  formats = ff_make_format_list(pixel_fmts);
69 
71 }
72 
74 {
75  AVFilterContext *ctx = inlink->dst;
76  DRContext *dr_context = ctx->priv;
77  const char *model_output_name = "y";
79 
80  dr_context->input.width = inlink->w;
81  dr_context->input.height = inlink->h;
82  dr_context->input.channels = 3;
83 
84  result = (dr_context->model->set_input_output)(dr_context->model->model, &dr_context->input, "x", &model_output_name, 1);
85  if (result != DNN_SUCCESS) {
86  av_log(ctx, AV_LOG_ERROR, "could not set input and output for the model\n");
87  return AVERROR(EIO);
88  }
89 
90  return 0;
91 }
92 
94 {
95  AVFilterContext *ctx = inlink->dst;
96  AVFilterLink *outlink = ctx->outputs[0];
97  DRContext *dr_context = ctx->priv;
98  DNNReturnType dnn_result;
99  int pad_size;
100 
101  AVFrame *out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
102  if (!out) {
103  av_log(ctx, AV_LOG_ERROR, "could not allocate memory for output frame\n");
104  av_frame_free(&in);
105  return AVERROR(ENOMEM);
106  }
107 
109 
110  for (int i = 0; i < in->height; i++){
111  for(int j = 0; j < in->width * 3; j++){
112  int k = i * in->linesize[0] + j;
113  int t = i * in->width * 3 + j;
114  ((float *)dr_context->input.data)[t] = in->data[0][k] / 255.0;
115  }
116  }
117 
118  dnn_result = (dr_context->dnn_module->execute_model)(dr_context->model, &dr_context->output, 1);
119  if (dnn_result != DNN_SUCCESS){
120  av_log(ctx, AV_LOG_ERROR, "failed to execute model\n");
121  return AVERROR(EIO);
122  }
123 
124  out->height = dr_context->output.height;
125  out->width = dr_context->output.width;
126  outlink->h = dr_context->output.height;
127  outlink->w = dr_context->output.width;
128  pad_size = (in->height - out->height) >> 1;
129 
130  for (int i = 0; i < out->height; i++){
131  for(int j = 0; j < out->width * 3; j++){
132  int k = i * out->linesize[0] + j;
133  int t = i * out->width * 3 + j;
134 
135  int t_in = (i + pad_size) * in->width * 3 + j + pad_size * 3;
136  out->data[0][k] = CLIP((int)((((float *)dr_context->input.data)[t_in] - dr_context->output.data[t]) * 255), 0, 255);
137  }
138  }
139 
140  av_frame_free(&in);
141 
142  return ff_filter_frame(outlink, out);
143 }
144 
146 {
147  DRContext *dr_context = ctx->priv;
148 
149  dr_context->input.dt = DNN_FLOAT;
150  dr_context->dnn_module = ff_get_dnn_module(dr_context->backend_type);
151  if (!dr_context->dnn_module) {
152  av_log(ctx, AV_LOG_ERROR, "could not create DNN module for requested backend\n");
153  return AVERROR(ENOMEM);
154  }
155  if (!dr_context->model_filename) {
156  av_log(ctx, AV_LOG_ERROR, "model file for network is not specified\n");
157  return AVERROR(EINVAL);
158  }
159  if (!dr_context->dnn_module->load_model) {
160  av_log(ctx, AV_LOG_ERROR, "load_model for network is not specified\n");
161  return AVERROR(EINVAL);
162  }
163 
164  dr_context->model = (dr_context->dnn_module->load_model)(dr_context->model_filename);
165  if (!dr_context->model) {
166  av_log(ctx, AV_LOG_ERROR, "could not load DNN model\n");
167  return AVERROR(EINVAL);
168  }
169 
170  return 0;
171 }
172 
174 {
175  DRContext *dr_context = ctx->priv;
176 
177  if (dr_context->dnn_module) {
178  (dr_context->dnn_module->free_model)(&dr_context->model);
179  av_freep(&dr_context->dnn_module);
180  }
181 }
182 
183 static const AVFilterPad derain_inputs[] = {
184  {
185  .name = "default",
186  .type = AVMEDIA_TYPE_VIDEO,
187  .config_props = config_inputs,
188  .filter_frame = filter_frame,
189  },
190  { NULL }
191 };
192 
193 static const AVFilterPad derain_outputs[] = {
194  {
195  .name = "default",
196  .type = AVMEDIA_TYPE_VIDEO,
197  },
198  { NULL }
199 };
200 
202  .name = "derain",
203  .description = NULL_IF_CONFIG_SMALL("Apply derain filter to the input."),
204  .priv_size = sizeof(DRContext),
205  .init = init,
206  .uninit = uninit,
210  .priv_class = &derain_class,
212 };
formats
formats
Definition: signature.h:48
ff_get_video_buffer
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition: video.c:99
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:64
DNNModule::execute_model
DNNReturnType(* execute_model)(const DNNModel *model, DNNData *outputs, uint32_t nb_output)
Definition: dnn_interface.h:61
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
opt.h
ff_make_format_list
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:283
DNNInputData::data
void * data
Definition: dnn_interface.h:38
out
FILE * out
Definition: movenc.c:54
DNNInputData::width
int width
Definition: dnn_interface.h:40
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1080
DRContext::model
DNNModel * model
Definition: vf_derain.c:40
inlink
The exact code depends on how similar the blocks are and how related they are to the and needs to apply these operations to the correct inlink or outlink if there are several Macros are available to factor that when no extra processing is inlink
Definition: filter_design.txt:212
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:202
DNNInputData::channels
int channels
Definition: dnn_interface.h:40
DRContext::input
DNNInputData input
Definition: vf_derain.c:41
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:295
AVOption
AVOption.
Definition: opt.h:246
CLIP
#define CLIP(x, min, max)
Definition: vf_derain.c:45
DRContext
Definition: vf_derain.c:34
init
static av_cold int init(AVFilterContext *ctx)
Definition: vf_derain.c:145
DNNModel::set_input_output
DNNReturnType(* set_input_output)(void *model, DNNInputData *input, const char *input_name, const char **output_names, uint32_t nb_output)
Definition: dnn_interface.h:53
DNNData::height
int height
Definition: dnn_interface.h:45
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:148
AVFilterFormats
A list of supported formats for one end of a filter link.
Definition: formats.h:64
formats.h
ff_vf_derain
AVFilter ff_vf_derain
Definition: vf_derain.c:201
DNN_SUCCESS
@ DNN_SUCCESS
Definition: dnn_interface.h:31
derain_inputs
static const AVFilterPad derain_inputs[]
Definition: vf_derain.c:183
AVFilterPad
A filter pad used for either input or output.
Definition: internal.h:54
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
av_cold
#define av_cold
Definition: attributes.h:84
ff_set_common_formats
int ff_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats)
A helper for query_formats() which sets all links to the same list of formats.
Definition: formats.c:568
DNNInputData
Definition: dnn_interface.h:37
query_formats
static int query_formats(AVFilterContext *ctx)
Definition: vf_derain.c:60
DRContext::dnn_module
DNNModule * dnn_module
Definition: vf_derain.c:39
DNNReturnType
DNNReturnType
Definition: dnn_interface.h:31
DNNData
Definition: dnn_interface.h:43
outputs
static const AVFilterPad outputs[]
Definition: af_acontrast.c:203
config_inputs
static int config_inputs(AVFilterLink *inlink)
Definition: vf_derain.c:73
ctx
AVFormatContext * ctx
Definition: movenc.c:48
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:67
result
and forward the result(frame or status change) to the corresponding input. If nothing is possible
NULL
#define NULL
Definition: coverity.c:32
av_frame_copy_props
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:654
derain_outputs
static const AVFilterPad derain_outputs[]
Definition: vf_derain.c:193
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: vf_derain.c:93
inputs
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several inputs
Definition: filter_design.txt:243
derain_options
static const AVOption derain_options[]
Definition: vf_derain.c:48
FLAGS
#define FLAGS
Definition: vf_derain.c:47
AV_PIX_FMT_RGB24
@ AV_PIX_FMT_RGB24
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition: pixfmt.h:68
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:188
DNNBackendType
DNNBackendType
Definition: dnn_interface.h:33
DRContext::backend_type
DNNBackendType backend_type
Definition: vf_derain.c:38
avio.h
DNN_FLOAT
@ DNN_FLOAT
Definition: dnn_interface.h:35
internal.h
dnn_interface.h
AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
Definition: avfilter.h:125
in
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(const int16_t *) pi >> 8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(const int32_t *) pi >> 24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31)))) #define SET_CONV_FUNC_GROUP(ofmt, ifmt) static void set_generic_function(AudioConvert *ac) { } void ff_audio_convert_free(AudioConvert **ac) { if(! *ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);} AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, int sample_rate, int apply_map) { AudioConvert *ac;int in_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) return NULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method !=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt) > 2) { ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc) { av_free(ac);return NULL;} return ac;} in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar) { ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar ? ac->channels :1;} else if(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;else ac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);return ac;} int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in) { int use_generic=1;int len=in->nb_samples;int p;if(ac->dc) { av_log(ac->avr, AV_LOG_TRACE, "%d samples - audio_convert: %s to %s (dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> in
Definition: audio_convert.c:326
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:259
AVFilterPad::name
const char * name
Pad name.
Definition: internal.h:60
ff_get_dnn_module
DNNModule * ff_get_dnn_module(DNNBackendType backend_type)
Definition: dnn_interface.c:31
AVFilter
Filter definition.
Definition: avfilter.h:144
DRContext::model_filename
char * model_filename
Definition: vf_derain.c:37
AVFILTER_DEFINE_CLASS
AVFILTER_DEFINE_CLASS(derain)
DNNModule::free_model
void(* free_model)(DNNModel **model)
Definition: dnn_interface.h:63
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:65
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:223
avfilter.h
AVFilterContext
An instance of a filter.
Definition: avfilter.h:338
DNNModel
Definition: dnn_interface.h:48
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
OFFSET
#define OFFSET(x)
Definition: vf_derain.c:46
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:35
DNNData::width
int width
Definition: dnn_interface.h:45
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:565
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
DNNInputData::dt
DNNDataType dt
Definition: dnn_interface.h:39
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_derain.c:173
DRContext::output
DNNData output
Definition: vf_derain.c:42
AV_OPT_TYPE_STRING
@ AV_OPT_TYPE_STRING
Definition: opt.h:227
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:232
DNNModule::load_model
DNNModel *(* load_model)(const char *model_filename)
Definition: dnn_interface.h:59
DNNData::data
float * data
Definition: dnn_interface.h:44
DNNModule
Definition: dnn_interface.h:57
DNNModel::model
void * model
Definition: dnn_interface.h:50
DNNInputData::height
int height
Definition: dnn_interface.h:40