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()
◆ config_output()
◆ filter_frame()
◆ uninit()
◆ sr_options
Initial value:= {
{
"dnn_backend",
"DNN backend used for model execution",
OFFSET(dnnctx.backend_type),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1,
FLAGS,
"backend" },
}
Definition at line 48 of file vf_sr.c.
◆ pixel_formats
Initial value:
Definition at line 69 of file vf_sr.c.
Referenced by main().
◆ sr_inputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 176 of file vf_sr.c.
◆ sr_outputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 184 of file vf_sr.c.
◆ ff_vf_sr
Initial value:= {
.name = "sr",
.priv_class = &sr_class,
}
Definition at line 192 of file vf_sr.c.