vs2015 + opencv3.4.0 + qt msvc2015_64-5.7.1 视屏显示
Posted rjjhyj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vs2015 + opencv3.4.0 + qt msvc2015_64-5.7.1 视屏显示相关的知识,希望对你有一定的参考价值。
1、qt application
2、qtvideoread.cpp中代码为:
#include "qtvideoread.h"
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "opencv2/imgproc/imgproc.hpp"
#include <QString>
#include <QLabel>
#include <QPainter>
#include <QTimer>
qtvideoread::qtvideoread(QWidget *parent, Qt::WindowFlags flags)
: QMainWindow(parent, flags)
{
ui.setupUi(this);
// 初始化处理,建立QImage和frame的关联,开启定时器
capture.open("E:/studyvsqt/qtvideoread/0920_01.mov");//-1 需要加载所在电脑视屏
if (capture.isOpened())
{
capture >> frame;
if (!frame.empty())
{
cv::cvtColor(frame, frame, CV_BGR2RGB);
cv::flip(frame, frame, 1);
image = new QImage((const unsigned char*)(frame.data), frame.cols, frame.rows, QImage::Format_RGB888);
timer = new QTimer(this);
timer->setInterval(30);
connect(timer, SIGNAL(timeout()), this, SLOT(nextFrame()));
timer->start();
}
}
}
qtvideoread::~qtvideoread()
{
}
void qtvideoread::paintEvent(QPaintEvent * e)
{
// 更新图像
QPainter painter(this);
painter.drawImage(QPoint(0, 12), *image);
}
void qtvideoread::nextFrame()
{// 更新数据
capture >> frame;
if (!frame.empty())
{
cv::cvtColor(frame, frame, CV_BGR2RGB);
cv::flip(frame, frame, 1);
this->update();
}
}
3、qtvideoread.h中代码为:
#ifndef QTVIDEOREAD_H
#define QTVIDEOREAD_H
#include <QtWidgets/QMainWindow>
#include "ui_qtvideoread.h"
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
class qtvideoread : public QMainWindow
{
Q_OBJECT
/*
public:
qtvideoread(QWidget *parent = 0);
~qtvideoread();
private:
Ui::qtvideoreadClass ui;
*/
public:
qtvideoread(QWidget *parent = 0, Qt::WindowFlags flags = 0);
~qtvideoread();
protected:
void paintEvent(QPaintEvent * e);
private:
Ui::qtvideoreadClass ui;
cv::Mat frame;
cv::VideoCapture capture;
QImage *image;
QTimer *timer;
private slots:
void nextFrame();
};
#endif // QTVIDEOREAD_H
4、点击运行就可以了
5、参考的网址:https://blog.csdn.net/yang_xian521/article/details/7042687
以上是关于vs2015 + opencv3.4.0 + qt msvc2015_64-5.7.1 视屏显示的主要内容,如果未能解决你的问题,请参考以下文章
使用vs2019编译和调试开源项目opencv3.4.0版本+opencv3.4.0源码网盘链接
使用vs2019编译和调试开源项目opencv3.4.0版本+opencv3.4.0源码网盘链接