2018-06-13 23:37:12 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 Sergey Lavrushkin
|
|
|
|
*
|
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Filter implementing image super-resolution using deep convolutional networks.
|
|
|
|
* https://arxiv.org/abs/1501.00092
|
|
|
|
* https://arxiv.org/abs/1609.05158
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "avfilter.h"
|
2024-08-12 15:29:00 +02:00
|
|
|
#include "filters.h"
|
2023-08-03 13:03:17 +02:00
|
|
|
#include "video.h"
|
2018-06-13 23:37:12 +02:00
|
|
|
#include "libavutil/opt.h"
|
2019-06-01 05:20:33 +02:00
|
|
|
#include "libavutil/pixdesc.h"
|
2018-06-13 23:37:12 +02:00
|
|
|
#include "libswscale/swscale.h"
|
2021-01-26 07:35:30 +02:00
|
|
|
#include "dnn_filter_common.h"
|
2018-06-13 23:37:12 +02:00
|
|
|
|
|
|
|
typedef struct SRContext {
|
|
|
|
const AVClass *class;
|
2021-01-26 07:35:30 +02:00
|
|
|
DnnContext dnnctx;
|
2018-06-13 23:37:12 +02:00
|
|
|
int scale_factor;
|
2020-08-28 06:51:44 +02:00
|
|
|
struct SwsContext *sws_uv_scale;
|
|
|
|
int sws_uv_height;
|
|
|
|
struct SwsContext *sws_pre_scale;
|
2018-06-13 23:37:12 +02:00
|
|
|
} SRContext;
|
|
|
|
|
|
|
|
#define OFFSET(x) offsetof(SRContext, x)
|
|
|
|
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM
|
|
|
|
static const AVOption sr_options[] = {
|
2024-02-11 16:41:05 +02:00
|
|
|
{ "dnn_backend", "DNN backend used for model execution", OFFSET(dnnctx.backend_type), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, FLAGS, .unit = "backend" },
|
2018-06-13 23:37:12 +02:00
|
|
|
#if (CONFIG_LIBTENSORFLOW == 1)
|
2024-02-11 16:41:05 +02:00
|
|
|
{ "tensorflow", "tensorflow backend flag", 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, 0, 0, FLAGS, .unit = "backend" },
|
2018-06-13 23:37:12 +02:00
|
|
|
#endif
|
2018-09-06 13:33:06 +02:00
|
|
|
{ "scale_factor", "scale factor for SRCNN model", OFFSET(scale_factor), AV_OPT_TYPE_INT, { .i64 = 2 }, 2, 4, FLAGS },
|
2018-06-13 23:37:12 +02:00
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
2024-05-07 18:08:10 +02:00
|
|
|
AVFILTER_DNN_DEFINE_CLASS(sr, DNN_TF);
|
2018-06-13 23:37:12 +02:00
|
|
|
|
2018-07-27 18:34:02 +02:00
|
|
|
static av_cold int init(AVFilterContext *context)
|
2018-06-13 23:37:12 +02:00
|
|
|
{
|
2018-07-27 18:34:02 +02:00
|
|
|
SRContext *sr_context = context->priv;
|
2021-02-07 08:35:22 +02:00
|
|
|
return ff_dnn_init(&sr_context->dnnctx, DFT_PROCESS_FRAME, context);
|
2018-06-13 23:37:12 +02:00
|
|
|
}
|
|
|
|
|
2021-09-29 15:57:43 +02:00
|
|
|
static const enum AVPixelFormat pixel_formats[] = {
|
|
|
|
AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV444P,
|
|
|
|
AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV411P, AV_PIX_FMT_GRAY8,
|
|
|
|
AV_PIX_FMT_NONE
|
|
|
|
};
|
2018-06-13 23:37:12 +02:00
|
|
|
|
2020-08-28 06:51:44 +02:00
|
|
|
static int config_output(AVFilterLink *outlink)
|
2018-06-13 23:37:12 +02:00
|
|
|
{
|
2020-08-28 06:51:44 +02:00
|
|
|
AVFilterContext *context = outlink->src;
|
|
|
|
SRContext *ctx = context->priv;
|
2022-03-02 20:05:49 +02:00
|
|
|
int result;
|
2020-08-28 06:51:44 +02:00
|
|
|
AVFilterLink *inlink = context->inputs[0];
|
2020-09-11 16:15:04 +02:00
|
|
|
int out_width, out_height;
|
2018-06-13 23:37:12 +02:00
|
|
|
|
2020-08-28 06:51:44 +02:00
|
|
|
// have a try run in case that the dnn model resize the frame
|
2021-01-26 07:35:30 +02:00
|
|
|
result = ff_dnn_get_output(&ctx->dnnctx, inlink->w, inlink->h, &out_width, &out_height);
|
2022-03-02 20:05:56 +02:00
|
|
|
if (result != 0) {
|
2020-09-11 16:15:04 +02:00
|
|
|
av_log(ctx, AV_LOG_ERROR, "could not get output from the model\n");
|
2022-03-02 20:05:49 +02:00
|
|
|
return result;
|
2019-04-25 04:14:17 +02:00
|
|
|
}
|
|
|
|
|
2020-09-11 16:15:04 +02:00
|
|
|
if (inlink->w != out_width || inlink->h != out_height) {
|
2020-08-28 06:51:44 +02:00
|
|
|
//espcn
|
2020-09-11 16:15:04 +02:00
|
|
|
outlink->w = out_width;
|
|
|
|
outlink->h = out_height;
|
2019-04-25 04:14:01 +02:00
|
|
|
if (inlink->format != AV_PIX_FMT_GRAY8){
|
2020-02-21 13:29:12 +02:00
|
|
|
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
|
2020-08-28 06:51:44 +02:00
|
|
|
int sws_src_h = AV_CEIL_RSHIFT(inlink->h, desc->log2_chroma_h);
|
|
|
|
int sws_src_w = AV_CEIL_RSHIFT(inlink->w, desc->log2_chroma_w);
|
|
|
|
int sws_dst_h = AV_CEIL_RSHIFT(outlink->h, desc->log2_chroma_h);
|
|
|
|
int sws_dst_w = AV_CEIL_RSHIFT(outlink->w, desc->log2_chroma_w);
|
|
|
|
ctx->sws_uv_scale = sws_getContext(sws_src_w, sws_src_h, AV_PIX_FMT_GRAY8,
|
|
|
|
sws_dst_w, sws_dst_h, AV_PIX_FMT_GRAY8,
|
|
|
|
SWS_BICUBIC, NULL, NULL, NULL);
|
|
|
|
ctx->sws_uv_height = sws_src_h;
|
2018-06-13 23:37:12 +02:00
|
|
|
}
|
2020-08-28 06:51:44 +02:00
|
|
|
} else {
|
|
|
|
//srcnn
|
2020-09-11 16:15:04 +02:00
|
|
|
outlink->w = out_width * ctx->scale_factor;
|
|
|
|
outlink->h = out_height * ctx->scale_factor;
|
2020-08-28 06:51:44 +02:00
|
|
|
ctx->sws_pre_scale = sws_getContext(inlink->w, inlink->h, inlink->format,
|
|
|
|
outlink->w, outlink->h, outlink->format,
|
|
|
|
SWS_BICUBIC, NULL, NULL, NULL);
|
2018-06-13 23:37:12 +02:00
|
|
|
}
|
2019-04-25 04:14:01 +02:00
|
|
|
|
|
|
|
return 0;
|
2018-06-13 23:37:12 +02:00
|
|
|
}
|
|
|
|
|
2018-07-27 18:34:02 +02:00
|
|
|
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
|
2018-06-13 23:37:12 +02:00
|
|
|
{
|
2021-08-25 23:10:45 +02:00
|
|
|
DNNAsyncStatusType async_state = 0;
|
2018-07-27 18:34:02 +02:00
|
|
|
AVFilterContext *context = inlink->dst;
|
2020-08-28 06:51:44 +02:00
|
|
|
SRContext *ctx = context->priv;
|
2018-07-27 18:34:02 +02:00
|
|
|
AVFilterLink *outlink = context->outputs[0];
|
|
|
|
AVFrame *out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
|
2022-03-02 20:05:49 +02:00
|
|
|
int dnn_result;
|
2018-06-13 23:37:12 +02:00
|
|
|
|
|
|
|
if (!out){
|
|
|
|
av_log(context, AV_LOG_ERROR, "could not allocate memory for output frame\n");
|
|
|
|
av_frame_free(&in);
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
}
|
|
|
|
av_frame_copy_props(out, in);
|
2018-07-31 17:58:28 +02:00
|
|
|
|
2020-08-28 06:51:44 +02:00
|
|
|
if (ctx->sws_pre_scale) {
|
|
|
|
sws_scale(ctx->sws_pre_scale,
|
|
|
|
(const uint8_t **)in->data, in->linesize, 0, in->height,
|
|
|
|
out->data, out->linesize);
|
2021-01-26 07:35:30 +02:00
|
|
|
dnn_result = ff_dnn_execute_model(&ctx->dnnctx, out, out);
|
2019-04-25 04:14:01 +02:00
|
|
|
} else {
|
2021-01-26 07:35:30 +02:00
|
|
|
dnn_result = ff_dnn_execute_model(&ctx->dnnctx, in, out);
|
2018-07-31 17:58:28 +02:00
|
|
|
}
|
2018-06-13 23:37:12 +02:00
|
|
|
|
2022-03-02 20:05:56 +02:00
|
|
|
if (dnn_result != 0){
|
2020-08-28 06:51:44 +02:00
|
|
|
av_log(ctx, AV_LOG_ERROR, "failed to execute loaded model\n");
|
|
|
|
av_frame_free(&in);
|
|
|
|
av_frame_free(&out);
|
2022-03-02 20:05:49 +02:00
|
|
|
return dnn_result;
|
2018-06-13 23:37:12 +02:00
|
|
|
}
|
|
|
|
|
2021-08-25 23:10:45 +02:00
|
|
|
do {
|
|
|
|
async_state = ff_dnn_get_result(&ctx->dnnctx, &in, &out);
|
|
|
|
} while (async_state == DAST_NOT_READY);
|
|
|
|
|
|
|
|
if (async_state != DAST_SUCCESS)
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
|
2020-08-28 06:51:44 +02:00
|
|
|
if (ctx->sws_uv_scale) {
|
|
|
|
sws_scale(ctx->sws_uv_scale, (const uint8_t **)(in->data + 1), in->linesize + 1,
|
|
|
|
0, ctx->sws_uv_height, out->data + 1, out->linesize + 1);
|
|
|
|
sws_scale(ctx->sws_uv_scale, (const uint8_t **)(in->data + 2), in->linesize + 2,
|
|
|
|
0, ctx->sws_uv_height, out->data + 2, out->linesize + 2);
|
|
|
|
}
|
2022-06-27 12:02:30 +02:00
|
|
|
if (in != out) {
|
|
|
|
av_frame_free(&in);
|
|
|
|
}
|
2018-06-13 23:37:12 +02:00
|
|
|
return ff_filter_frame(outlink, out);
|
|
|
|
}
|
|
|
|
|
2018-07-27 18:34:02 +02:00
|
|
|
static av_cold void uninit(AVFilterContext *context)
|
2018-06-13 23:37:12 +02:00
|
|
|
{
|
2018-07-27 18:34:02 +02:00
|
|
|
SRContext *sr_context = context->priv;
|
2018-06-13 23:37:12 +02:00
|
|
|
|
2021-01-26 07:35:30 +02:00
|
|
|
ff_dnn_uninit(&sr_context->dnnctx);
|
2020-08-28 06:51:44 +02:00
|
|
|
sws_freeContext(sr_context->sws_uv_scale);
|
|
|
|
sws_freeContext(sr_context->sws_pre_scale);
|
2018-06-13 23:37:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const AVFilterPad sr_inputs[] = {
|
|
|
|
{
|
|
|
|
.name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
.filter_frame = filter_frame,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static const AVFilterPad sr_outputs[] = {
|
|
|
|
{
|
|
|
|
.name = "default",
|
2020-08-28 06:51:44 +02:00
|
|
|
.config_props = config_output,
|
2018-06-13 23:37:12 +02:00
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2021-04-19 18:33:56 +02:00
|
|
|
const AVFilter ff_vf_sr = {
|
2018-06-13 23:37:12 +02:00
|
|
|
.name = "sr",
|
|
|
|
.description = NULL_IF_CONFIG_SMALL("Apply DNN-based image super resolution to the input."),
|
|
|
|
.priv_size = sizeof(SRContext),
|
avfilter/dnn: Refactor DNN parameter configuration system
This patch trying to resolve mulitiple issues related to parameter
configuration:
Firstly, each DNN filters duplicate DNN_COMMON_OPTIONS, which should
be the common options of backend.
Secondly, backend options are hidden behind the scene. It's a
AV_OPT_TYPE_STRING backend_configs for user, and parsed by each
backend. We don't know each backend support what kind of options
from the help message.
Third, DNN backends duplicate DNN_BACKEND_COMMON_OPTIONS.
Last but not the least, pass backend options via AV_OPT_TYPE_STRING
makes it hard to pass AV_OPT_TYPE_BINARY to backend, if not impossible.
This patch puts backend common options and each backend options inside
DnnContext to reduce code duplication, make options user friendly, and
easy to extend for future usecase.
For example,
./ffmpeg -h filter=dnn_processing
dnn_processing AVOptions:
dnn_backend <int> ..FV....... DNN backend (from INT_MIN to INT_MAX) (default tensorflow)
tensorflow 1 ..FV....... tensorflow backend flag
openvino 2 ..FV....... openvino backend flag
torch 3 ..FV....... torch backend flag
dnn_base AVOptions:
model <string> ..F........ path to model file
input <string> ..F........ input name of the model
output <string> ..F........ output name of the model
backend_configs <string> ..F.......P backend configs (deprecated)
options <string> ..F.......P backend configs (deprecated)
nireq <int> ..F........ number of request (from 0 to INT_MAX) (default 0)
async <boolean> ..F........ use DNN async inference (default true)
device <string> ..F........ device to run model
dnn_tensorflow AVOptions:
sess_config <string> ..F........ config for SessionOptions
dnn_openvino AVOptions:
batch_size <int> ..F........ batch size per request (from 1 to 1000) (default 1)
input_resizable <boolean> ..F........ can input be resizable or not (default false)
layout <int> ..F........ input layout of model (from 0 to 2) (default none)
none 0 ..F........ none
nchw 1 ..F........ nchw
nhwc 2 ..F........ nhwc
scale <float> ..F........ Add scale preprocess operation. Divide each element of input by specified value. (from INT_MIN to INT_MAX) (default 0)
mean <float> ..F........ Add mean preprocess operation. Subtract specified value from each element of input. (from INT_MIN to INT_MAX) (default 0)
dnn_th AVOptions:
optimize <int> ..F........ turn on graph executor optimization (from 0 to 1) (default 0)
Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
Reviewed-by: Wenbin Chen <wenbin.chen@intel.com>
Reviewed-by: Guo Yejun <yejun.guo@intel.com>
2024-05-07 18:08:08 +02:00
|
|
|
.preinit = ff_dnn_filter_init_child_class,
|
2018-06-13 23:37:12 +02:00
|
|
|
.init = init,
|
|
|
|
.uninit = uninit,
|
2021-08-12 13:05:31 +02:00
|
|
|
FILTER_INPUTS(sr_inputs),
|
|
|
|
FILTER_OUTPUTS(sr_outputs),
|
2021-09-27 17:37:41 +02:00
|
|
|
FILTER_PIXFMTS_ARRAY(pixel_formats),
|
2018-06-13 23:37:12 +02:00
|
|
|
.priv_class = &sr_class,
|
|
|
|
};
|