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 is not what I want. Thanks
|
|
Here is code for 24bit RGB and grayscale floating point. Easily adjustable for other types. It is as efficient as it gets.
|
|||||
|
|
To convert from
Update: because OpenCV uses BGR order by default, you should first use |
|||||||||||
|
|
Michal Kottman's answer is valid and give expected result for some images but it'll fail on some cases. Here is a solution i found to that problem.
Difference is adding img.step part. qt won't complain without it but some images won't show properly without it. Hope this will help. |
|||||
|
|
cv::Mat has a conversion operator to IplImage, so if you have something that converts the IplImage to a QImage, just use that (or make the - probably minor - adjustments to take the cv::Mat directly, the memory layout is the same, it's "just" the header that is different.) |
|||||||
|
This is what worked for me. I modified Michal Kottman's code above. |
|||
|
|
|
This post shows how to convert a After that, if you need help to convert between
It's a hack, but will get the job done. |
|||
|
|