Tagged Questions

3
votes
2answers
6k views

QGraphicsView scrolling and image scaling/cropping

I would like to have a background image in my QGraphicsView that is always scaled (and cropped if necessary) to the size of the viewport, without scrollbars and without scrolling with the keyboard and ...
2
votes
3answers
526 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
250 views

QImage/QPixmap size limitations?

Are there any known size/space limitation of QPixmap and/or QImage objects documented? I did not find any useful information regarding this. I'm currently using Qt 4.7.3 on OSX and Windows. ...
1
vote
1answer
546 views

QT- QImage and multi-threading problem

Greetings all, Please refer to image at : http://i48.tinypic.com/316qb78.jpg We are developing an application to extract cell edges from MRC images from electron microscope. MRC file format stores ...
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
424 views

QT: Painting bitmap/PNG images to a QWidget

I am building a game using QT in c++. I have extended the QWidget class as a painting surface and have set up a thread to refresh the screen. What I need now is to load the sprite sheets from file, ...
0
votes
1answer
886 views

Converting an image to text

I want to be able to save an image as text in a xml file and I can't manage to find a efficient way to do it ! So far I tried : QByteArray ImageAsByteArray; QBuffer ...