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 ...
5
votes
3answers
2k views

Using QImage with OpenGL

I've very recently picked up Qt and am using it with OpenGL The thing though is that when moving my SDL code to Qt and changing the texture code to use QImage it stops working. The image does load ...
3
votes
4answers
3k views

how to convert an opencv cv::Mat to qimage

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 ...
3
votes
4answers
6k views

Display QImage on QT GUI

I am new to QT, and I am trying to create a simple GUI Application that displays an image once a button has been clicked. I can read the image in a QImage object, is there any simple way to call a QT ...
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 ...
3
votes
3answers
1k views

Painting Issue on QWidget outsite GUI thread

I am developing an appliation in which I want to continuously receive images from remote host and display them on my screen. for this I am following the given strategy 1) I have a main QWidget object ...
3
votes
1answer
3k views

QT QImage pixel manipulation problems

I'm currently in the process of writing a steganography application with QT. I am trying to hide my message bits in the least significant bit of the blue colour of the pixel From debugging I can ...
2
votes
1answer
66 views

Can overloaded new operator receive args to pass to the object's constructor?

I see a lot of C++ libraries dealing with dynamic memory allocation this way: Qimage* _image = new QImage(width, height, QImage::Format_RGB888); if (!_image) { // Failed! } I find it ...
2
votes
1answer
84 views

Qt breakout game

I'm new to Qt and have been trying to get this tutorial to work: http://zetcode.com/tutorials/qt4tutorial/breakoutgame/# Can someone help me out with what my main function would look like? And where ...
2
votes
1answer
84 views

How can I decrease the amount of time it takes to save a png using QImage?

Using Qt 4.8rc1, I have a QImage that I want to convert to a png file. It seems like it is taking longer than it should to convert to png format: ~70ms for an 800x800 empty png. Is there a way I can ...
2
votes
3answers
531 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 ?
2
votes
1answer
197 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() ...
2
votes
2answers
1k views

Constructing QImage from unsigned char* data

I encountered a problem with passing Image object (captured with Point Grej FlyCapture2 SDK) to QImage object. I am getting a pointer associated with Image data by function: virtual unsigned char* ...
2
votes
3answers
3k views

Qt: QImage always saves transparent color as black

How do I save a file with transparency to a JPEG file without Qt making the transparent color black? I know JPEG doesn't support alpha, and the black is probably just a default "0" value for alpha, ...
1
vote
1answer
31 views

Qt, low cost way to display only part of large QImage

I draw frequency spectrum of WAV file inside QImage (example: http://savepic.net/2350314.jpg). The WAV file may be long enough to not fit into screen considering good time resolution. I need to be ...
1
vote
3answers
251 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
116 views

Why does this code make the QImage lose its alpha channel?

I'm trying to understand why the code below changes the QImage in Qt. It's not meant to do anything (yet), it's just for testing. When I run the code on an image with alpha, the alpha channel is lost ...
1
vote
2answers
142 views

QImage (or images generally) conversion to 3 1D arrays for RGB

A function that I am trying to conform to requires three 1-Dimensional arrays of type double[19200]. The following arrays are RGB arrays such that: double r[19200]; // r double g[19200]; // g double ...
1
vote
1answer
771 views

QImage in a QGraphics scene

I am quite new to Qt.I am having troubles in inserting a QImage to a scene. Could somebody please tell me how to add a QImage to a QGraphicsScene. Thank you very much in advance. ~Tharanga
1
vote
3answers
210 views

need to compress QImage to send it via IP

i'm programming an application (in C++/Qt Designer 4.6 and using some librairies like ffmpeg and v4l2) which capture from webcam and i want to send the captured QImage via IP, so i send it into a ...
1
vote
2answers
334 views

How to use a color LUT in Qt QImage

I have some legacy code that was writing to a NITF file to display some images. In the legacy code, it appears as if there was a LUT being used, and there was a section of code that wrote out a row at ...
1
vote
1answer
270 views

Get mouse position in a QImage

I need to get the coordinates of a QImage of where the mouse is currently hovering. Like in image editing programs, where we can see the coordinates of the pixel the mouse in currently hovering.
1
vote
1answer
200 views

Qt - QImage is there a method to paste Qimage into another Qimage?

I am looking for a way to simply paste some Qimage into bigger one, starting with some given (x,y). Now, I am copying pixel by pixel all Qimage.
1
vote
1answer
1k views

Very big QImage and Memory Mapped Files in QT

I want bind QImage to the MMF file to manipulate the image without the cost of memory directly on the disc. Unfortunately, my code creates a copy in memory. QFile file("Boston City Flow.jpg"); ...
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
23 views

QTextEdit not working

Why doesn't drag and drop pictures work on this QTextEdit? I have tried everything. here is the class TextEdit: //textedit class TextEdit : public QTextEdit { Q_OBJECT public: ...
0
votes
1answer
30 views

QImage : Delete or not after copy/load

that's probably a trick question, but i'm nut sure : Do I have to call delete after : QImage::copy() QImage::load(QString) QPixmap::fromImage(QImage) By delete I meen, deleting it when I don't ...
0
votes
2answers
77 views

How to set QImage pixel colour for an RGB888 image in Qt

I have an RGB888 format qImage defined as follows: myQrgb = QImage(img_in, width, height, QImage::Format_RGB888); I wish to alter specific pixel values, so I followed the example here, like so: ...
0
votes
1answer
110 views

scanline function in qimage class

I'm developing application for editing raster graphic. In this application I have to create scanline function which will do same thing as scanline function in QImage class. But I'm little confused ...
0
votes
1answer
91 views

Qt : QImage load data from memory

I am new to StackOverFlow and wish there are experts to my problem, which consumed me a week time! I embedded my JPEG files into a single data file, and need to load them on demand to avoid memory ...
0
votes
3answers
75 views

QImage definition

this command line: QImage:: QImage (uchar * data, int width, int height, int bytesPerLine, Format format) Would use is it so? QImage image = new QImage (buffer, 600, 400, jpg) the bytesPerLine not ...
0
votes
1answer
88 views

Generating textual images using QImage (qt)

I am trying to create images from text using QImage. As per the documentation here: http://doc.qt.nokia.com/latest/qimage.html#Format-enum We cannot use QImage::Format_Indexed8 with QImage. I cannot ...
0
votes
1answer
121 views

How to load an image from a buffer with Qt?

Thus type: QBuffer* buffer = new QBuffer(this->Conex); QImage* image = new QImage (); image->loadFromData (buffer->buffer()); This does not work for me.
0
votes
1answer
241 views

Pass a Qt QImage to a glsl texture sampler

I am writing a rendering engine using Qt and am running into problems with texturing my models I have a very simple shader to test texturing: vertex shader: Attribute vec4 Vertex; Attribute vec2 ...
0
votes
1answer
70 views

QImageReader with custom QIODevice implementation

I have a custom QIODevice that decrypts the data stream from another QIODevice (it might be a file). It is used it to encrypt and decrypt files. Some of the files are images. Then QImageReader is used ...
0
votes
1answer
143 views

Copying data correctly between Qt Qimage and Boost Multi Array

I have a situation where I want to copy the data from a Qt image into a Boost Multi Array, do some manipulation to the Multi Array and copy the data back to a QImage to display. I am accessing the ...
0
votes
1answer
101 views

QBrush texture without tiling

Is there an easy way to get rid of tiling when using a QBrush with texture? QImage* texture = CreateQImage(); // create texture QBrush* brush = new QBrush(*texture); // create texture ...
0
votes
2answers
160 views

Qt 4.7 QColor constructor: possible bug?

I am getting unexpected output from a piece of code that is simply accessing image coordinates, here's a snippet: QImage image(imageFileNames[frameNumber]); QRgb qrgb(image.pixel(493,114)); QColor ...
0
votes
2answers
249 views

QPixmap fromImage results in Segmentation fault

I'm at a complete loss here... I'm trying to convert a QImage to a QPixmap but my program keeps crashing with the following stack trace. What's weird is it works fine if the QRectF that I specify ...
0
votes
2answers
362 views

Fast image manipulation

I have an array 10X10 with values between 1 to 10. Now say I want to give each value a unique color (Say 1 gets blue 2 gets red etc). I'm using qt qimage to represent the image. Here's what I'm doing ...
0
votes
1answer
430 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
201 views

QPixmap::fromImage() gives segmentation fault in QX11PixmapData

I have written some code that looks more or less like this: QVector<QRgb> colorTable(256); QImage *qi = new QImage(lutData, imwidth,imheight, QImage::Format_Indexed8); while (index < 256) ...
0
votes
1answer
329 views

How to output this 24 bit image in Qt

I have an unsigned char array that is defined like so: unsigned char **chars = new unsigned char *[H]; for(int i = 0; i < H; i++) { chars[i] = new unsigned char[W*3]; } Where H is the ...
0
votes
1answer
101 views

Watching a QImage during single-stepping

I'm debugging a huge Qt app with hundreds of classes, messy code, etc. While tracking down a bug, I want to single-step in gdb (kdbg, ddd, whatever) while watching what gets drawn into a QImage using ...
0
votes
1answer
307 views

Replace image with another one in QTextEdit

Say there is a text and images in a QTextEdit. And say you extract HTML code of the QTextEdit. Now how it is posible to find the places in the HTML code where the images are instantiated () and ...
0
votes
2answers
310 views

How to display a QImage in QWebKit?

Is there any way to display a QImage (in memory, not on filesystem) in a QWebFrame without writing the image out to a temporary file?
0
votes
2answers
422 views

QImage file path

I don't see this in the documentation anywhere, so it probably doesn't exist, but just in case: I have a function that accepts as a parameter a vector of QImages. Each QImage was loaded from disk at ...
0
votes
1answer
889 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 ...
0
votes
3answers
1k views

Qt image format plugins

Can somebody point me to sites with not supported by Qt image format plugins (reading/writing). XCF and PSD for example.

1 2