Recently, i develop a new visualization software using the QT Grapohics View Framework. In the software, we need show a lot of items, include the point and line, about ten thousand above. But, in the process of display , there are pool efficiency and often no response. When we want to zoom it or remove the position of scene, we must wait a span and it hard to bear. so, i want to know whether it is normal and how to improve the efficiency about the situation. Thanks .

link|improve this question
feedback

1 Answer

I use Graphics View Framework to draw geographical map (large polygons with thousands of points). And it does it very well.

In Qt-4.6 there were delays when zooming and moving around. With antialiasing enabled dealys were so long that it was better to kill the application. So try to use the latest version of Qt.

Also if you use custom QGraphicsItem-s check this article: Qt: Improving QGraphicsView Performance.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.