Optimizing drawnow for large real-time simulation
显示 更早的评论
Hi everyone. I am using this basic setup for a real-time simulation. The profiler states that most of the time (60%) is spent in drawnow. My geometries are made of ~6000 vertices ( v ) and ~14000 faces ( f ). I am currently reaching 15 frames per second (fps) and would like to target ~20 fps. I have tried replacing drawnow with pause() but it either gets too slow or it starts skipping frames. Do you have any suggestions?
- I have tried switching between renderers without any success and modifying e.g. 'XData' instead of 'vertices' results in improper rendering and is not recommended (see comment below).
dt=0.02;
hsurf=trisurf(f,v(:,1),v(:,2),v(:,3));
axis([-15 15 -15 15 -15 15]);
for t:1:T
v=function_to_update_vertices(v,dt);
set(hsurf,'vertices',v); %faces stays the same
drawnow
end
回答(1 个)
Sean de Wolski
2013-4-12
编辑:Sean de Wolski
2013-4-12
0 个投票
Have you tried using all three renderers to see which is the fastest for this application? Or are you tied to OpenGL for transparency?
My only other suggestion might be to try setting the 'XData', 'YData', 'ZData' explicitly rather than the 'Vertices' which then have to calculate the above. I do not know if this will improve speed or not.
4 个评论
Sean de Wolski
2013-4-12
Hi Linus,
I don't have time to look into this right now, but the last sentence of that solution says:
"Hence, to summarize if one creates a patch using the 'Vertices' and 'Faces' model then the 'XData', 'YData' or 'ZData' properties should not be used, and vice versa."
So what if you never do the faces vertices to begin with?
Linus
2013-4-12
类别
在 帮助中心 和 File Exchange 中查找有关 Graphics Performance 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!