OpenCV 4.11.0
开源计算机视觉库
加载中…
搜索中…
无匹配项
视频超分辨率

本教程将指导您如何使用 'dnn_superres' 接口通过预训练的神经网络对视频进行超分辨率处理。

构建

构建 OpenCV 时,请运行以下命令以构建所有 contrib 模块:

cmake -D OPENCV_EXTRA_MODULES_PATH=<opencv_contrib>/modules/

或者只构建 dnn_superres 模块:

cmake -D OPENCV_EXTRA_MODULES_PATH=<opencv_contrib>/modules/dnn_superres

或者在 CMake 的 GUI 版本 (cmake-gui) 中确保选中 dnn_superres 模块。

示例源代码

1// 此文件是 OpenCV 项目的一部分。
2// 它受此发行版顶层目录中 LICENSE 文件中找到的许可条款以及 https://opencv.ac.cn/license.html 中的许可条款约束。
3
4
5#include <iostream>
6
8
9#include <opencv2/imgproc.hpp>
10#include <opencv2/highgui.hpp>
11
12using namespace std;
13using namespace cv;
14using namespace dnn_superres;
15
16int main(int argc, char *argv[])
17{
18 // 检查有效的命令行参数,如果参数不足则打印使用方法。
19
20 if (argc < 4) {
21 cout << "用法:参数 1:输入视频路径" << endl;
22 cout << "\t 参数 2:输出视频路径" << endl;
23 cout << "\t 参数 3:算法 | edsr、espcn、fsrcnn 或 lapsrn" << endl;
24 cout << "\t 参数 4:缩放比例 | 2、3、4 或 8 \n";
25 cout << "\t 参数 5:模型文件路径 \n";
26 return -1;
27 }
28
29 string input_path = string(argv[1]);
30 string output_path = string(argv[2]);
31 string algorithm = string(argv[3]);
32 int scale = atoi(argv[4]);
33 string path = string(argv[5]);
34
35 VideoCapture input_video(input_path);
36 int ex = static_cast<int>(input_video.get(CAP_PROP_FOURCC));
37 Size S = Size((int) input_video.get(CAP_PROP_FRAME_WIDTH) * scale,
38 (int) input_video.get(CAP_PROP_FRAME_HEIGHT) * scale);
39
40 VideoWriter output_video;
41 output_video.open(output_path, ex, input_video.get(CAP_PROP_FPS), S, true);
42
43 if (!input_video.isOpened())
44 {
45 std::cerr << "无法打开视频。" << std::endl;
46 return -1;
47 }
48
49 DnnSuperResImpl sr;
50 sr.readModel(path);
51 sr.setModel(algorithm, scale);
52
53 for(;;)
54 {
55 Mat frame, output_frame;
56 input_video >> frame;
57
58 if ( frame.empty() )
59 break;
60
61 sr.upsample(frame, output_frame);
62 output_video << output_frame;
63
64 namedWindow("超分辨率视频", WINDOW_AUTOSIZE);
65 imshow("超分辨率视频", output_frame);
66
67 namedWindow("原始视频", WINDOW_AUTOSIZE);
68 imshow("原始视频", frame);
69
70 char c=(char)waitKey(25);
71 if(c==27)
72 break;
73 }
74
75 input_video.release();
76 output_video.release();
77
78 return 0;
79}
N 维密集数组类
定义 mat.hpp:829
bool empty() const
如果数组没有元素,则返回 true。
用于指定图像或矩形大小的模板类。
定义 types.hpp:335
用于从视频文件、图像序列或摄像头捕获视频的类。
定义 videoio.hpp:766
视频写入器类。
定义 videoio.hpp:1065
virtual bool open(const String &filename, int fourcc, double fps, Size frameSize, bool isColor=true)
初始化或重新初始化视频写入器。
virtual void release()
关闭视频写入器。
int main(int argc, char *argv[])
定义 highgui_qt.cpp:3
定义 core.hpp:107
STL 命名空间。

说明

  1. 设置头文件和命名空间
    using namespace std;
    using namespace cv;
    using namespace dnn_superres;
  2. 创建 Dnn Superres 对象
    DnnSuperResImpl sr;
    实例化一个 dnn 超分辨率对象。
  3. 读取模型
    path = "models/ESPCN_x2.pb"
    sr.readModel(path);
    sr.setModel("espcn", 2);
    从给定路径读取模型,并设置算法和缩放因子。
  4. 提升视频分辨率
    循环(;;)
    {
    Mat frame, output_frame;
    input_video >> frame;
    如果 ( frame.empty() )
    中断;
    sr.upsample(frame, output_frame);
    ...
    }
    逐帧处理和提升视频分辨率。