Tagged Questions

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
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
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
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
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
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.
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
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
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
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
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
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
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
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
826 views

QImage from datastream

I'm using the Qt library, creating QImages. I'm able to use this constructor: QImage image("example.jpg"); But I'm having trouble with this static function: char buffer[sizeOfFile]; ifstream ...
0
votes
4answers
386 views

How to check if file is/isn't an image without loading full file? Is there an image header-reading library?

edit: Sorry, I guess my question was vague. I'd like to have a way to check if a file is not an image without wasting time loading the whole image, because then I can do the rest of the loading ...