Tagged Questions
6
votes
12answers
2k views
Enabling JPEG support for QImage in py2exe-compiled Python scripts?
I'm trying to use a JPEG image in a QImage object from a Python script, with PyQt4.
The script itself works perfectly, the image loads and can be manipulated and rendered and all. However, when I ...
2
votes
1answer
227 views
QImage: is there any lazy copying crop method
I was trying to use QImage for loading image and checking the equality with a template sub-image that moves all over the image. The code is as:
for i in range(image.height() - backgroundMask.height() ...
0
votes
1answer
296 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 ...