Since it seems I need to improve the performance of my code, I wanted to ask, how good is the performance of QGraphicsPixmapItem::setPixmap(*Qimage)
?
My Image is 1024x1024 px and is updated about every 2.5seconds. But I need it to be updated much faster (4096x every 2.5 seconds at best). Is it possible with QGraphicsPixmapItem::setPixmap(*Qimage)
?
I am filling every single pixel of QImage directly with an array: array[y*SCENEWIDTH+x] = color
.
But with that speed QGraphicsPixmapItem::setPixmap(*Qimage)
seems to freeze my GUI. Goal is to display huge ammounts of data incoming in polar coordinates (azimuth per azimuth) (radar video).
Any suggestions? Thank you!