• 大小: 11.05MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-07-25
  • 语言: 其他
  • 标签: qt5  opencv  多线程  

资源简介

目前网上使用Qt5与opencv 显示视频的,都是使用死循环来做,不是很好。本代码使用Qt5的多线程在Qlabel控件下实时显示摄像头画面

资源截图

代码片段和文件信息

#include “CameraThread.h“

CameraThread::CameraThread(void)
{
    //ui.setupUi(this);
}


CameraThread::~CameraThread(void)
{
}

void CameraThread::run()
{
 VideoCapture cap(0);  
    if(!cap.isOpened())  
    {  
         return;
    }  
    Mat frame;  
    Mat edges;  
  
    bool stop = false;  
    while(!stop)  
    {  
        cap>>frame; 
        //cvtColor(frame edges CV_BGR2GRAY);  
        //GaussianBlur(edges edges Size(77) 1.5 1.5);  
        //Canny(edges edges 0 30 3);  
        //imshow(“当前视频“edges);  
        //if(waitKey(30) >=0)  
            //stop = true; 

    cvtColor(frame frame CV_RGB2RGBA);
QImage img = QImage((const unsigned char*)(frame.data)frame.cols frame.rows QImage::Format_RGB32); 
label->setPixmap(QPixmap::fromImage(img).scaled(label->size()));
label->resize(label->pixmap()->size());
//label->setPixmap(QPixmap::fromImage(img).scaled(label->size()));
    //label->resize(label->pixmap()->size());
    }  

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-04-06 19:44  Qt_2\
     目录           0  2017-04-01 22:12  Qt_2\Qt_2\
     文件        1019  2017-04-06 19:44  Qt_2\Qt_2\CameraThread.cpp
     文件         400  2017-04-06 19:42  Qt_2\Qt_2\CameraThread.h
     目录           0  2017-04-06 19:43  Qt_2\Qt_2\Debug\
     文件      118416  2017-04-06 19:42  Qt_2\Qt_2\Debug\CL.read.1.tlog
     文件        3026  2017-04-06 19:42  Qt_2\Qt_2\Debug\CL.write.1.tlog
     文件      205831  2017-04-06 19:42  Qt_2\Qt_2\Debug\CameraThread.obj
     文件          59  2017-04-06 19:43  Qt_2\Qt_2\Debug\Qt_2.lastbuildstate
     文件        1637  2017-04-06 19:43  Qt_2\Qt_2\Debug\Qt_2.log
     文件        7818  2017-04-06 19:42  Qt_2\Qt_2\Debug\cl.command.1.tlog
     文件        3044  2017-04-06 19:42  Qt_2\Qt_2\Debug\custombuild.command.1.tlog
     文件         594  2017-04-06 19:42  Qt_2\Qt_2\Debug\custombuild.read.1.tlog
     文件         794  2017-04-06 19:42  Qt_2\Qt_2\Debug\custombuild.write.1.tlog
     文件           2  2017-04-06 19:43  Qt_2\Qt_2\Debug\link-cvtres.read.1.tlog
     文件           2  2017-04-06 19:43  Qt_2\Qt_2\Debug\link-cvtres.write.1.tlog
     文件           2  2017-04-06 19:43  Qt_2\Qt_2\Debug\link-rc.read.1.tlog
     文件           2  2017-04-06 19:43  Qt_2\Qt_2\Debug\link-rc.write.1.tlog
     文件           2  2017-04-06 19:43  Qt_2\Qt_2\Debug\link.10828-cvtres.read.1.tlog
     文件           2  2017-04-06 19:43  Qt_2\Qt_2\Debug\link.10828-cvtres.write.1.tlog
     文件           2  2017-04-06 19:43  Qt_2\Qt_2\Debug\link.10828-rc.read.1.tlog
     文件           2  2017-04-06 19:43  Qt_2\Qt_2\Debug\link.10828-rc.write.1.tlog
     文件           2  2017-04-06 19:43  Qt_2\Qt_2\Debug\link.10828.read.1.tlog
     文件           2  2017-04-06 19:43  Qt_2\Qt_2\Debug\link.10828.write.1.tlog
     文件           2  2017-04-06 19:43  Qt_2\Qt_2\Debug\link.10984-cvtres.read.1.tlog
     文件           2  2017-04-06 19:43  Qt_2\Qt_2\Debug\link.10984-cvtres.write.1.tlog
     文件           2  2017-04-06 19:43  Qt_2\Qt_2\Debug\link.10984-rc.read.1.tlog
     文件           2  2017-04-06 19:43  Qt_2\Qt_2\Debug\link.10984-rc.write.1.tlog
     文件           2  2017-04-06 19:43  Qt_2\Qt_2\Debug\link.10984.read.1.tlog
     文件           2  2017-04-06 19:43  Qt_2\Qt_2\Debug\link.10984.write.1.tlog
     文件           2  2017-04-06 19:43  Qt_2\Qt_2\Debug\link.11088-cvtres.read.1.tlog
............此处省略70个文件信息

评论

共有 条评论