Tagged Questions

1
vote
1answer
124 views

What is the most effective way to create an image histogram in python/pyside?

What is the most effective way to create an image (QImage) histogram in PySide? My test image is 1,9MB, 3648x2736px, jpeg photo I tried two ways: 1. import time start = time.time() for y in ...
1
vote
2answers
526 views

PyQt4 - Image Watermark

I'm trying to open a PNG image and write some text to it (a watermark) via QImage and QPainter. The code works 100% on Linux but when I run it on Windows XP (haven't tested with any other versions of ...
0
votes
1answer
274 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 ...