Filter implementing image super-resolution using deep convolutional networks.
More...
Go to the source code of this file.
Filter implementing image super-resolution using deep convolutional networks.
https://arxiv.org/abs/1501.00092 https://arxiv.org/abs/1609.05158
Definition in file vf_sr.c.
◆ OFFSET
◆ FLAGS
◆ AVFILTER_DEFINE_CLASS()
AVFILTER_DEFINE_CLASS |
( |
sr |
| ) |
|
◆ init()
◆ query_formats()
◆ config_props()
◆ filter_frame()
◆ uninit()
◆ sr_options
Initial value:= {
{
"dnn_backend",
"DNN backend used for model execution",
OFFSET(backend_type),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1,
FLAGS,
"backend" },
}
Definition at line 53 of file vf_sr.c.
◆ sr_inputs
Initial value:= {
{
.name = "default",
},
}
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
static int config_props(AVFilterLink *inlink)
Definition at line 264 of file vf_sr.c.
◆ sr_outputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 274 of file vf_sr.c.
◆ ff_vf_sr
Initial value:= {
.name = "sr",
.priv_class = &sr_class,
}
static const AVFilterPad sr_inputs[]
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static int query_formats(AVFilterContext *context)
static const AVFilterPad inputs[]
static av_cold void uninit(AVFilterContext *context)
static const AVFilterPad outputs[]
static av_cold int init(AVFilterContext *context)
static const AVFilterPad sr_outputs[]
Definition at line 282 of file vf_sr.c.