我有时间问题。我已经编写了一个用于图像处理的 qt Gui。对于这种情况,实现用于视频处理和对象跟踪的 blob 检测器是相关的。主要是看起来不错。它在处理、抓取、mser 操作和显示仅 0.07 到 0.08 秒后使用 GUI,这可用于超过 10 fps 的良好帧率。
为此,我在 Suse 12.3 上使用 Qt 4 - C++。OpenCV 2.4.3 和笔记本电脑网络摄像头。我的问题是,过了一会儿我的程序挂了。
查看我的系统监视器,我看到 CPU-Power 已达到 100 %,并且单次运行使用 CPU 的硬资源,长时间使用处理器(没有 GUI)。我不明白出了什么问题。有没有人有这方面的经验?
提前TY!
一些代码片段:关于 GUI 的 MSER 初始化:
MSER FtMSERVid( MSERDelta, MSERMinArea, MSERMaxArea,MSERMaxVariation ,MSERMinDiversity);
视频处理功能
double startTime = clock();
camDev.read(vidImg);
if(vidImg.empty() == true)
{
newLineInText(tr("No data from device"));
timer->stop();
ui->pbPlay->setText(tr(">"));
return;
}
MSERPointsVid.clear();
if(vidImg.channels() > 1)
cvtColor(vidImg, vidImg,CV_BGR2GRAY);
FtMSERVid(vidImg, MSERPointsVid);
Mat showMat = vidImg.clone();
if(showMat.channels() > 1)
{
cvtColor(showMat,showMat,CV_BGR2RGB);
qImg = QImage((uchar*)showMat.data,showMat.cols,showMat.rows,showMat.step,QImage::Format_RGB888);
}
else if(showMat.channels() == 1)
qImg = QImage((uchar*)showMat.data,showMat.cols,showMat.rows,showMat.step,QImage::Format_Indexed8);
ui->lblOrig->setPixmap(QPixmap::fromImage(qImg));
double endTime = clock();
double timeDuration = (endTime - startTime)/CLOCKS_PER_SEC;
if(numVid%10 == 0)
{
framesPS = int(1/timeDuration) - 1;
if(framesPS > 1)
framesPS = 1;
FPSChanged(framesPS);
numVid = 0;
}