Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
How to continuosly show processed images as they are getting processed? (efficiently)
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I am working on Live image processing. And want to show processed image as fast as I can.
finalImage = imshow(im);
for i=1:dataLength
tic
zoomIm = imTransform(im); % Main Image Transforming function
title(['CPU-Elapsed Time: ' sprintf('%0.3f Sec', toc)])
set(finalImage,'CData',zoomIm);
%drawnow
pause(0.0001)
end
I am not using drawnow, because it takes much time.
But is there any other out of the box efficient way to processes and show live images?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/193504/image.png)
7 comentarios
Respuestas (0)
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!