我附上了我的代码的一些部分,
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "colorrecognition.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
//this->setStyleSheet("background-color: black;"); // set the background
//capture = 0;
// frame = 0;
//interface
//tabWidget = new QTabWidget;
//start capturing a video
//capture = cvCaptureFromCAM(0);
//capture = cvCaptureFromAVI("videoExample.avi");
//frame = cvQueryFrame(capture);
tabWidget = new QTabWidget(ui->centralWidget);
tabWidget->setObjectName(QString::fromUtf8("tabWidget"));
tabWidget->setGeometry(QRect(20, 0, 801, 571));
tabWidget->addTab(new ColorRecognition(), tr("Color Recognition"));
Contour contour1;
}
MainWindow::~MainWindow()
{
delete ui;
}
//========================================================
ColorRecognition::ColorRecognition(QWidget *parent){
storage1 = cvCreateMemStorage(0);
storage2 = cvCreateMemStorage(0);
/*QFrame* frame1 = new QFrame(this);
frame1->setObjectName(QString::fromUtf8("frame1"));
frame1->setGeometry(QRect(20, 20, 761, 501));
frame1->setFrameShape(QFrame::StyledPanel);
frame1->setFrameShadow(QFrame::Raised);*/
//start capturing a video
capture = cvCaptureFromCAM(0);
//capture = cvCaptureFromAVI("videoExample.avi");
//print an error message in case you can't grab the frame
if (!cvGrabFrame(capture)) { // capture a frame
printf("couldn't grab a frame");
}
//First screen --- Color Identification ---
//QObject::connect(ui->tabWidget, SIGNAL(currentChanged(int)), this, SLOT(color_Recoginition()));
//set timer for 50ms intervals
QTimer* m_timer = new QTimer(this);
connect(m_timer, SIGNAL(timeout()), this, SLOT(color()));
m_timer->start(100);
}
void ColorRecognition::paintEvent(QPaintEvent* e) {
QPainter painter(this);
painter.drawImage(10,10, qt_img);
}
void ColorRecognition::color(){
frame = cvQueryFrame(capture);
//CvSize imageSize = cvSize(frame->width,frame->height);
//IplImage* resultImage = cvCreateImage(imageSize, 8, 3);
//qDebug("Befroe manipulation");
cvCvtColor(frame, frame, CV_BGR2RGB);
//CvSize imageSize = cvSize(frame->width, frame->height);
IplImage **thresholdedImage = contour1.GetThresholdedImage(frame);
//insert the resulted frame from the above function into the find contour function
cvFindContours(thresholdedImage[0], storage1, &contours1, sizeof(CvContour),
CV_RETR_EXTERNAL, CV_CHAIN_APPROX_SIMPLE, cvPoint(0, 0));
cvFindContours(thresholdedImage[1], storage2, &contours2, sizeof(CvContour),
CV_RETR_EXTERNAL, CV_CHAIN_APPROX_SIMPLE, cvPoint(0, 0));
contour1.drawContour(contours1, storage1, frame, CV_RGB(255, 0, 0));
contour1.drawContour(contours2, storage2, frame, CV_RGB(0, 255, 0));
qt_img = QImage((unsigned char *)frame->imageDataOrigin,frame->width,frame->height,QImage::Format_RGB888);
//release temp memory
//cvReleaseMemStorage(&storage1);
//cvReleaseMemStorage(&storage2);
//cvReleaseMemStorage(&contours1->storage); // check if that is correct
//cvReleaseMemStorage(&contours2->storage);*/
//resultImage = contour1.colorIdentification(frame);
//cvCvtColor(resultImage, resultImage, CV_BGR2RGB);
//qDebug("After manipulation");
this->update();
}
问题是,当我运行这段代码时,屏幕上没有任何内容,但是当我运行代码Qt时(仅在OpenCV中),代码工作没有问题
谁能知道这笔交易是什么?
答案 0 :(得分:0)
所以我弄清楚我的代码出了什么问题,这真是一个愚蠢的错误 - >
我正在将帧图像立即传递给我已完成的功能
frame = cvQueryFrame(capture);
所以解决了我的问题是将帧图像复制到IplImage然后它完美地工作 - >
cvCopy(frame, resultImage);