You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

254 lines
8.9KB

  1. /*
  2. * Copyright (c) 2018 Sergey Lavrushkin
  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. * @file
  22. * Filter implementing image super-resolution using deep convolutional networks.
  23. * https://arxiv.org/abs/1501.00092
  24. * https://arxiv.org/abs/1609.05158
  25. */
  26. #include "avfilter.h"
  27. #include "formats.h"
  28. #include "internal.h"
  29. #include "libavutil/opt.h"
  30. #include "libavutil/pixdesc.h"
  31. #include "libavformat/avio.h"
  32. #include "libswscale/swscale.h"
  33. #include "dnn_interface.h"
  34. typedef struct SRContext {
  35. const AVClass *class;
  36. char *model_filename;
  37. DNNBackendType backend_type;
  38. DNNModule *dnn_module;
  39. DNNModel *model;
  40. int scale_factor;
  41. struct SwsContext *sws_uv_scale;
  42. int sws_uv_height;
  43. struct SwsContext *sws_pre_scale;
  44. } SRContext;
  45. #define OFFSET(x) offsetof(SRContext, x)
  46. #define FLAGS AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM
  47. static const AVOption sr_options[] = {
  48. { "dnn_backend", "DNN backend used for model execution", OFFSET(backend_type), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, FLAGS, "backend" },
  49. { "native", "native backend flag", 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, 0, 0, FLAGS, "backend" },
  50. #if (CONFIG_LIBTENSORFLOW == 1)
  51. { "tensorflow", "tensorflow backend flag", 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, 0, 0, FLAGS, "backend" },
  52. #endif
  53. { "scale_factor", "scale factor for SRCNN model", OFFSET(scale_factor), AV_OPT_TYPE_INT, { .i64 = 2 }, 2, 4, FLAGS },
  54. { "model", "path to model file specifying network architecture and its parameters", OFFSET(model_filename), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
  55. { NULL }
  56. };
  57. AVFILTER_DEFINE_CLASS(sr);
  58. static av_cold int init(AVFilterContext *context)
  59. {
  60. SRContext *sr_context = context->priv;
  61. sr_context->dnn_module = ff_get_dnn_module(sr_context->backend_type);
  62. if (!sr_context->dnn_module){
  63. av_log(context, AV_LOG_ERROR, "could not create DNN module for requested backend\n");
  64. return AVERROR(ENOMEM);
  65. }
  66. if (!sr_context->model_filename){
  67. av_log(context, AV_LOG_ERROR, "model file for network was not specified\n");
  68. return AVERROR(EIO);
  69. }
  70. if (!sr_context->dnn_module->load_model) {
  71. av_log(context, AV_LOG_ERROR, "load_model for network was not specified\n");
  72. return AVERROR(EIO);
  73. }
  74. sr_context->model = (sr_context->dnn_module->load_model)(sr_context->model_filename, NULL, NULL);
  75. if (!sr_context->model){
  76. av_log(context, AV_LOG_ERROR, "could not load DNN model\n");
  77. return AVERROR(EIO);
  78. }
  79. return 0;
  80. }
  81. static int query_formats(AVFilterContext *context)
  82. {
  83. const enum AVPixelFormat pixel_formats[] = {AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV444P,
  84. AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV411P, AV_PIX_FMT_GRAY8,
  85. AV_PIX_FMT_NONE};
  86. AVFilterFormats *formats_list;
  87. formats_list = ff_make_format_list(pixel_formats);
  88. if (!formats_list){
  89. av_log(context, AV_LOG_ERROR, "could not create formats list\n");
  90. return AVERROR(ENOMEM);
  91. }
  92. return ff_set_common_formats(context, formats_list);
  93. }
  94. static int config_output(AVFilterLink *outlink)
  95. {
  96. AVFilterContext *context = outlink->src;
  97. SRContext *ctx = context->priv;
  98. DNNReturnType result;
  99. AVFilterLink *inlink = context->inputs[0];
  100. AVFrame *out = NULL;
  101. const char *model_output_name = "y";
  102. AVFrame *fake_in = ff_get_video_buffer(inlink, inlink->w, inlink->h);
  103. result = (ctx->model->set_input)(ctx->model->model, fake_in, "x");
  104. if (result != DNN_SUCCESS) {
  105. av_log(context, AV_LOG_ERROR, "could not set input for the model\n");
  106. return AVERROR(EIO);
  107. }
  108. // have a try run in case that the dnn model resize the frame
  109. out = ff_get_video_buffer(inlink, inlink->w, inlink->h);
  110. result = (ctx->dnn_module->execute_model)(ctx->model, (const char **)&model_output_name, 1, out);
  111. if (result != DNN_SUCCESS){
  112. av_log(context, AV_LOG_ERROR, "failed to execute loaded model\n");
  113. return AVERROR(EIO);
  114. }
  115. if (fake_in->width != out->width || fake_in->height != out->height) {
  116. //espcn
  117. outlink->w = out->width;
  118. outlink->h = out->height;
  119. if (inlink->format != AV_PIX_FMT_GRAY8){
  120. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  121. int sws_src_h = AV_CEIL_RSHIFT(inlink->h, desc->log2_chroma_h);
  122. int sws_src_w = AV_CEIL_RSHIFT(inlink->w, desc->log2_chroma_w);
  123. int sws_dst_h = AV_CEIL_RSHIFT(outlink->h, desc->log2_chroma_h);
  124. int sws_dst_w = AV_CEIL_RSHIFT(outlink->w, desc->log2_chroma_w);
  125. ctx->sws_uv_scale = sws_getContext(sws_src_w, sws_src_h, AV_PIX_FMT_GRAY8,
  126. sws_dst_w, sws_dst_h, AV_PIX_FMT_GRAY8,
  127. SWS_BICUBIC, NULL, NULL, NULL);
  128. ctx->sws_uv_height = sws_src_h;
  129. }
  130. } else {
  131. //srcnn
  132. outlink->w = out->width * ctx->scale_factor;
  133. outlink->h = out->height * ctx->scale_factor;
  134. ctx->sws_pre_scale = sws_getContext(inlink->w, inlink->h, inlink->format,
  135. outlink->w, outlink->h, outlink->format,
  136. SWS_BICUBIC, NULL, NULL, NULL);
  137. }
  138. av_frame_free(&fake_in);
  139. av_frame_free(&out);
  140. return 0;
  141. }
  142. static int filter_frame(AVFilterLink *inlink, AVFrame *in)
  143. {
  144. AVFilterContext *context = inlink->dst;
  145. SRContext *ctx = context->priv;
  146. AVFilterLink *outlink = context->outputs[0];
  147. AVFrame *out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
  148. DNNReturnType dnn_result;
  149. const char *model_output_name = "y";
  150. if (!out){
  151. av_log(context, AV_LOG_ERROR, "could not allocate memory for output frame\n");
  152. av_frame_free(&in);
  153. return AVERROR(ENOMEM);
  154. }
  155. av_frame_copy_props(out, in);
  156. if (ctx->sws_pre_scale) {
  157. sws_scale(ctx->sws_pre_scale,
  158. (const uint8_t **)in->data, in->linesize, 0, in->height,
  159. out->data, out->linesize);
  160. dnn_result = (ctx->model->set_input)(ctx->model->model, out, "x");
  161. } else {
  162. dnn_result = (ctx->model->set_input)(ctx->model->model, in, "x");
  163. }
  164. if (dnn_result != DNN_SUCCESS) {
  165. av_frame_free(&in);
  166. av_frame_free(&out);
  167. av_log(context, AV_LOG_ERROR, "could not set input for the model\n");
  168. return AVERROR(EIO);
  169. }
  170. dnn_result = (ctx->dnn_module->execute_model)(ctx->model, (const char **)&model_output_name, 1, out);
  171. if (dnn_result != DNN_SUCCESS){
  172. av_log(ctx, AV_LOG_ERROR, "failed to execute loaded model\n");
  173. av_frame_free(&in);
  174. av_frame_free(&out);
  175. return AVERROR(EIO);
  176. }
  177. if (ctx->sws_uv_scale) {
  178. sws_scale(ctx->sws_uv_scale, (const uint8_t **)(in->data + 1), in->linesize + 1,
  179. 0, ctx->sws_uv_height, out->data + 1, out->linesize + 1);
  180. sws_scale(ctx->sws_uv_scale, (const uint8_t **)(in->data + 2), in->linesize + 2,
  181. 0, ctx->sws_uv_height, out->data + 2, out->linesize + 2);
  182. }
  183. av_frame_free(&in);
  184. return ff_filter_frame(outlink, out);
  185. }
  186. static av_cold void uninit(AVFilterContext *context)
  187. {
  188. SRContext *sr_context = context->priv;
  189. if (sr_context->dnn_module){
  190. (sr_context->dnn_module->free_model)(&sr_context->model);
  191. av_freep(&sr_context->dnn_module);
  192. }
  193. sws_freeContext(sr_context->sws_uv_scale);
  194. sws_freeContext(sr_context->sws_pre_scale);
  195. }
  196. static const AVFilterPad sr_inputs[] = {
  197. {
  198. .name = "default",
  199. .type = AVMEDIA_TYPE_VIDEO,
  200. .filter_frame = filter_frame,
  201. },
  202. { NULL }
  203. };
  204. static const AVFilterPad sr_outputs[] = {
  205. {
  206. .name = "default",
  207. .config_props = config_output,
  208. .type = AVMEDIA_TYPE_VIDEO,
  209. },
  210. { NULL }
  211. };
  212. AVFilter ff_vf_sr = {
  213. .name = "sr",
  214. .description = NULL_IF_CONFIG_SMALL("Apply DNN-based image super resolution to the input."),
  215. .priv_size = sizeof(SRContext),
  216. .init = init,
  217. .uninit = uninit,
  218. .query_formats = query_formats,
  219. .inputs = sr_inputs,
  220. .outputs = sr_outputs,
  221. .priv_class = &sr_class,
  222. };