Continuous Image update using GraphicsView
-
I am working on an Image processing application which is written using QWidget and now we are planning to upgrade it using Graphics View Framework.
How it is possible to update images continuously while receiving it from a connected camera to the Graphics Scene?
I have seen that we can use below code to show image on scene.
QGraphicsPixmapItem *pixItem= scene.addPixmap(image);
I need to consider two scenarios
- Display Image is captured on request by user.
- Display Continuous image captured by camera.
Can anyone suggest what will be the best approach to implement this use-case using GraphicsView framework.
-
Hi,
Looks like you are looking for QGraphicsVideoItem
-
Thanks for the reply.
QGraphicsVideoItem will not suit for my application.Since it is an image processing application I need to get images from the camera. It can be coming in any speed. As I mentioned in my comment the user can click button "Capture" then camera will capture new image and send it to my application and it should display it.
-
The camera which I have mentioned is actually is a Vision Sensor which is connected via ethernet. I dont think it is possible to use Camera module for this sensor in my application.
The image which are captured by this vision sensor is transferred to my application using TCP/IP/.
My actual concern is how efficiently I can display images in Graphics View using QGraphicsPixmapItem or other way. -
Then indeed, it won't be supported out of the box but that's not really problem.
What is your video stream format ? Image size ? Frame rate ?
-
At which speed to you plan to request them ?