so i can see my webcam stream with OpenCV with imshow with this simple code
int main(int, char**)
{
VideoCapture cap(0);
Mat edges;
namedWindow("webcam", 1);
while (true)
{
Mat frame;
cap >> frame;
imshow("webcam", frame);
if (waitKey(30) >= 0) break;
}
return 0;
}
now what i want to is to show the image from OpenCV in QImage in Widget on QT Here is a conversion from cv::Mat to QImage
QImage Mat2QImage(cv::Mat const& src)
{
cv::Mat temp;
cvtColor(src, temp, CV_BGR2RGB);
QImage dest((const uchar *)temp.data, temp.cols, temp.rows, temp.step, QImage::Format_RGB888);
dest.bits();
// of QImage::QImage ( const uchar * data, int width, int height, Format format )
return dest;
}
and the little code to show an image with QImage in QT
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QImage myImage;
myImage.load("a.png");
QLabel myLabel;
myLabel.setPixmap(QPixmap::fromImage(myImage));
myLabel.show();
return a.exec();
}
i tried to combine them in this way, but no luck
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
VideoCapture cap(0);
QImage myImage;
QLabel myLabel;
while (true)
{
Mat frame;
cap >> frame; // get a new frame from camera
myImage = Mat2QImage(frame);
myLabel.setPixmap(QPixmap::fromImage(myImage));
}
myLabel.show();
return a.exec();
myLabel.show()
is after the loop ? – BoiethiosQThread
and you don't have to stick to the Worker pattern I've used in the tutorial. – rbaleksandar