FFmpeg
|
#include "libavutil/opt.h"
#include "avfilter.h"
#include "dnn_filter_common.h"
#include "filters.h"
#include "video.h"
Go to the source code of this file.
Data Structures | |
struct | DRContext |
Macros | |
#define | OFFSET(x) offsetof(DRContext, x) |
#define | FLAGS AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM |
Functions | |
AVFILTER_DNN_DEFINE_CLASS (derain, DNN_TF) | |
static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
static av_cold int | init (AVFilterContext *ctx) |
static av_cold void | uninit (AVFilterContext *ctx) |
Variables | |
static const AVOption | derain_options [] |
static const AVFilterPad | derain_inputs [] |
const AVFilter | ff_vf_derain |
Filter implementing image derain filter using deep convolutional networks. http://openaccess.thecvf.com/content_ECCV_2018/html/Xia_Li_Recurrent_Squeeze-and-Excitation_Context_ECCV_2018_paper.html
Definition in file vf_derain.c.
#define OFFSET | ( | x | ) | offsetof(DRContext, x) |
Definition at line 39 of file vf_derain.c.
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 40 of file vf_derain.c.
AVFILTER_DNN_DEFINE_CLASS | ( | derain | , |
DNN_TF | |||
) |
|
static |
Definition at line 54 of file vf_derain.c.
|
static |
Definition at line 89 of file vf_derain.c.
|
static |
Definition at line 95 of file vf_derain.c.
|
static |
Definition at line 41 of file vf_derain.c.
|
static |
Definition at line 101 of file vf_derain.c.
const AVFilter ff_vf_derain |
Definition at line 109 of file vf_derain.c.