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 please ... thank you
|
feedback
|
|
You can use the following code to convert numpy arrays to QImage:
and then just convert OpenCV's CvMat to a numpy array before calling
See also http://opencv.willowgarage.com/documentation/python/cookbook.html for the conversion between OpenCV's CvMat and numpy arrays. | |||
|
feedback
|
|
This worked for me.
| |||
|
feedback
|