A QImage is a class from the Qt toolkit which provides a hardware-independent image representation that allows direct access to the pixel data, and can be used as a paint device.
0
votes
1answer
30 views
How to change coordinate system on Pixmap
Who knows how to move from top left coordinate system to the default, where X/Y-axis starts from the left bottom corner (like we always draw them) on QPixmap/Qimage
0
votes
1answer
43 views
Load QImage inside QWebView
I have the below code
QWebView webView;
QImage img = QImage::fromData((unsigned char *)data, size); // comes from some data source
webView.setHtml("<html><body><img ...
0
votes
1answer
46 views
QImage to QPixmap through another thread
I've a problem with sending QImage to GUI-thread:
this is my code in child-thread:
QSize size = ui->label_2->size();
size=ui->label_2->size();
QImage ...
0
votes
0answers
14 views
QImage::fromData not thread safe
The following code crashes if run inside multiple QThreads:
//mutex.lock();
qImage = QImage::fromData((const uchar*)bin,size);
//mutex.unlock();
I can fix that with mutexes, but it defeats the ...
0
votes
1answer
93 views
Need to draw Transparent qimage that includes drawing of a circle using Qt
I am trying to draw a transparent image using QImage but everytime it gives black background. I have a image background,on that I want to draw a circle which should be trasparent(with no ...
0
votes
1answer
75 views
Qt PNG image not displaying
I just cannot get the png image to display, I check that it loads correctly which is does but nothing is displayed on my blank canvases. The third one is meant to display an image. Can someone please ...
2
votes
1answer
113 views
Convert 16-bit grayscale to QImage
I am working on a sensor-based Python application built on a PyQt4 GUI. The sensor is generating 16-bit measurements... 256 16-bit "pixels" per "line". A square "image" is acquired by obtaining 256 ...
0
votes
1answer
67 views
Convert HBITMAP to QImage without using QPixmap
I am extracting thumbnails of files from Windows in a secondary thread and the output is an HBITMAP. Now I got to convert this to QImage to send it back to the main thread. As you might already know, ...
0
votes
1answer
74 views
Double char array mapping to QImage
Im having a double pointer char of dataBuffer[1000][1000]
in that char pointer some places i will make hex value 0xFF and remaining 0x00 (for openGL plotting)
now i want it to show it as a QWidget ...
0
votes
1answer
176 views
Qimage: out of memory, returning null image
I am writing a code to show a video in a graphicsView QObject. It goes like this:
void MainWindow::UpdateVideo()
{
cap >> frame;
cvtColor(frame, frame,CV_BGR2RGB);
QImage Qframe = ...
-1
votes
1answer
111 views
Qt - Verify if Image loaded is grayscale
I have developed a small GUI in C++/Qt, I would like to know a fast way to test if image loaded is grayscale. In practise, when I load a grayscale image of gif format, I want it to be recognized as a ...
2
votes
1answer
64 views
Am I responsible for calling delete on the pointer provided by the QImage::bits() function?
The Qt class QImage has two versions of its bits() function that returns a pointer to the underlying image data. One is const, the other is not. Here is the documentation for the non-const version:
...
0
votes
1answer
173 views
Qt does not load JPG , just PNG
I work with my colleagues on the same project on Windows 7 64 bit version, Visual Studio 2008.
They load JPG and they work. Through QPixmap and Stylesheets. And works.
But for me, i can only work ...
0
votes
1answer
76 views
Cant fill QImage via setPixel properly
I need to convert QImage to an array where each pixel is represented by three integers(channels). So I'm trying to achieve this with fillowing code:
void Processor::init(QImage *image){
QColor* c = ...
0
votes
1answer
224 views
PIL to Qimage conversion: QImage constructor does not free memory
I am developping a Qt application loading pictures with PIL, modifying colors and alpha channels, then converting them as QImage.
Here is the problematic piece of code: normal repeated usage of the ...
0
votes
1answer
69 views
QImage from HBITMAP
In my windows-only program I use a third-party library, which returns a HBITMAP.
Is there a way to initialize a QImage from its contents, i.e. to convert it to a QImage?
0
votes
2answers
256 views
Raw data to QImage
I'm new to graphics programming (pixels, images, etc..)
I'm trying to convert Raw data to QImage and display it on QLabel. The problem is that, the raw data can be any data (it's not actually image ...
0
votes
0answers
52 views
QtWebkit Bridge, unexpectedly closing when accessing QImage
I'm trying to allow access to a qimage using qtwebkit bridge through javascript.
However, when I try to access it using the inspector I get "The program has unexpectedly finished".
Am I accessing the ...
0
votes
1answer
204 views
QImage OpenCV - setPixel with only green and black colors
I made a simple graphical user interface with Qt and I use OpenCV for making processing on webcam streaming, i.e canny edge detection.
I try to implement a switch between two displays of the webcam : ...
0
votes
1answer
111 views
Creating an “array_like” QImage subclass for numpy.array()
I want to create an "array_like" QImage subclass that can be passed to numpy.array().
I'd like to avoid using PIL as a substitute; the whole point of this is to avoid the dependency on PIL. Besides, ...
1
vote
1answer
296 views
Displaying an image with QImage and OpenCV [duplicate]
Possible Duplicate:
Fastest method to convert IplImage IPL_DEPTH_32S to QImage Format_RGB32
I am facing a weird problem in displaying image with Qt...I read a video frame using OpenCV and ...
0
votes
2answers
93 views
Jpeg read errors using QImage in release builds
Has anyone experienced problems using Qt and the QImage's class load method when attempting to load jpeg images. The loading works perfectly in debug mode using QtCreator but fails completely when ...
2
votes
2answers
63 views
Is there a function to get the bounding box of the non-white area of a QImage?
I have a QImage and I need to trim the surrounding white (i.e. crop it to only the non-white area).
Does QImage or QPixmap have a built-in function that will return the bounding box of the non-white ...
-2
votes
2answers
399 views
scale a QImage in Qt
What the easiest way to draw an image as a background for a QGraphicsRectItem?
I can set the background as follows but I can't scale the image:
QGraphicsRectItem *enemyItem;
QImage *image = new ...
0
votes
1answer
158 views
sending qimage over qtcpsocket: received only part of the data
i am creating an application where i need to send some images over tcp.
the sending part is
QImage image;
image.load("image.png", "PNG");
image.setText("name", "color");
QByteArray ba;
...
2
votes
1answer
58 views
Is it safe to call QImage::save() before QPainter::end()
In this code:
QPainter painter(&image);
// do painting .......
painter.end(); // is this needed?
image.save(tempFileName);
do I need to close the QPainter before saving the QImage, in order ...
2
votes
3answers
238 views
Problems with large QImage
I'm pretty new to C++/Qt and I'm trying to create an application with Visual Studio C++ and Qt (4.8.3). The application displays images using a QGraphicsView, I need to change the images at pixel ...
1
vote
0answers
63 views
QImage::hasAlphaChannel() reporting false for PNG [closed]
I have a .png image with some pixels being transparent.
I open it in Qt but hasAlphaChannel() function reports false - why? load(..) should automatically detect the picture format, according to ...
0
votes
1answer
159 views
How to invert QImage without affecting performance?
I have a QImage in a QGraphicsView which I need to show images continously. Some times I need to show the inverted images continuously. For this I use img.invertPixels(QImage::InvertRgba); But at this ...
1
vote
1answer
112 views
Qt: Empty transparent QImage has noise
I'm trying to do some offscreen rendering onto a QImage (nothing special, just a few composited thumbnails) and am running into an issue where even new and supposedly blank QImages have some pretty ...
0
votes
2answers
161 views
cv::Mat to QImage strange behavior
I'm using the code suggested in ( how to convert an opencv cv::Mat to qimage ) to display a cv::Mat in my Qt application. However, I'm getting strange results. The black parts are displayed as black, ...
0
votes
1answer
147 views
Set DPI for QImage
I'm drawing text using QPainter on a QImage, and then saving it to TIFF.
I need to increase the DPI to 300, which should make the text bigger in terms of pixels (for the same point size).
2
votes
1answer
117 views
When can we delete a frame buffer when QImage is constructed from it and potentially shallow copied?
In this question, I would like to know the best practice of maintaining the life of an external buffer object associated to QImage object.
Background
I am developing an uncompressed image file ...
0
votes
0answers
155 views
QImage does not save correctly with premultipled format
I'm trying to create a QImage in the memory and save it to the disk. I have tried two different format for the image.
Format_ARGB32 works well, the color is indeed the input (255, 0, 0, 127).
...
2
votes
2answers
72 views
Is the endian-ness of a QImage created from a uchar[] platform-dependent?
QImage has a constructor QImage (uchar *data, int width, int height, int bytesPerLine, Format format) that creates a QImage from an existing memory buffer.
Is the order of bytes (uchars) ...
0
votes
2answers
182 views
How to render custom video data in Qt ?
I have never done a Qt video application - newbie in this area. I have a custom video file format to render using Qt. The video file format is 256-byte header, then pixel data, then 256-byte header, ...
1
vote
1answer
139 views
Why does my QPainter instance only draw when I use a specific .png?
I'm creating a simple "frogger" type game with Qt Creator.
I managed to get a player that works with 4 directional keys, and a car that moves on its own across the screen. I have separate Player, Car, ...
0
votes
2answers
210 views
Dividing QImage to smaller pieces
I have an image, and I want to divide this image to n pieces. So what I'm wondering is that how can I do this with QImage? Or is there a better(performance wise) Qt class for this task?
For example ...
3
votes
3answers
706 views
QT QImage, how to extract RGB?
I want to extract RGB from each pixel in QImage. Ideally, I want to use the img.bits() function.
QImage img;
if( img.load("Red.jpg") )
{
uchar *bits = img.bits();
for (int i = 0; i < 12; ...
3
votes
2answers
319 views
Passing binary data from Qt/C++ DLL into Delphi host application
In a Program I want to uses QImage.bits() in Delphi. So, in Qt I was created a dll. the dll Source Code Listed in below:
test.h:
#ifndef TEST_H
#define TEST_H
#include "test_global.h"
...
0
votes
2answers
286 views
QImage Rotation without loosing infomation
i have a QImage of size 12x12 in GIF format. i want to rotate it on certain angle with very high frequency. My application involves a robot so when it changes its orientation(which it does very ...
0
votes
1answer
313 views
Image raw data Ros and Qt
I have a simulation in Gazebo in which I am publishing an image raw data topic which have raw image data. Now I want to display that data in qt as a video. I am not sure what I should use as a video ...
0
votes
0answers
98 views
Python/PyQt4 - Transfer QImage between multi-processing queues = 'The underlying c/c++ object has been deleted"?
I have some python multiprocessing processes which I spawn to load/modify some QImages.
Once the processes finish I want the QImages to be passed to the main application for display.
Right now the ...
2
votes
2answers
144 views
How to crop a QImage to its opaque area?
If I have a QImage with an alpha channel, how can I create a new QImage which is cropped to the bounding box of the opaque area?
0
votes
0answers
150 views
QImage and QPixmap pointers being lost after class initialization
When I create a QPixmap* or QImage* in my object upon initialization, then attempt to paint it later on, the image or pixmap is blank. However, if I create the image or pixmap (still as pointers) ...
0
votes
1answer
115 views
32 bit png images on device with 16 bit display
Does anyone know how to convert 32 bit images to show on device with 16 bit display ?
I tried to create a 24 bit image with Qt QImage - QImage QImage::convertToFormat
and save the result image, but ...
1
vote
2answers
434 views
Qt - Is there a way to view a QImage “live” on the UI?
I'm learning Qt, and have come across a problem I can't figure out, so I'd like to ask the experts!
I am working on an application where I'd like to have a QImage object (using format ...
0
votes
3answers
455 views
Fastest method to convert IplImage IPL_DEPTH_32S to QImage Format_RGB32
What is the fastest method to convert IplImage IPL_DEPTH_32S to QImage Format_RGB32?
I need to catch pictures from cam and show it on form with frequency 30 frames in second. I tried to use QImage ...
0
votes
1answer
375 views
How can access to pixel data with PYQt' QImage scanline()
I need to access the pixel data in a qimage object with PyQt4.
The .pixel() is too slow so the docs say to use the scanline() method.
In c++ I can get the pointer returned by the scanline() method ...
2
votes
2answers
646 views
Connecting slider to Graphics View in PyQt
I'm trying to display image data read in from a binary file (I have the code written for retrieving this data from a file and storing it as an image for use with QImage() ). What I would like to do ...




