Tagged Questions
3
votes
4answers
3k views
how to convert an opencv cv::Mat to qimage
I am wondering how would I convert the OpenCV C++ standard cv::Mat type to Qimage. I have been searching around, but have no luck. I have found some code that converts the IPlimage to Qimage, but that ...
2
votes
3answers
527 views
Convert iplImage to Qpixmap
how do we convert IplImage to a Qpixmap or Qimage ?
if the only answer is save the Iplimage then load it to the Qpixma then how do we do that ?
1
vote
3answers
3k views
How to solve QPixmap::fromImage memory leak?
I have a problem with Qt.
Here is a part of code that troubles me:
void FullScreenImage::QImageIplImageCvt(IplImage *input)
{
help=cvCreateImage(cvGetSize(input), input->depth, ...
0
votes
1answer
275 views
python convert IplImage to Qimage
I am trying to process some videos using openCV and then put it inside pyqt Qimage...
I saw some examples to do that but they are all in C++ and I can understand python only,
Can anyone help me ...