Why "imshow" function in GUI so slow?
이전 댓글 표시
I have a GUI program which shows 10 images using "axes(handles.axes1);" and "imshow(f);" function. But when I run it, the 10 images appear sequentially but not at the same time. There's a delay between each image showing. What's wrong within it?
채택된 답변
추가 답변 (2개)
Image Analyst
2012년 3월 16일
4 개 추천
Call "cla reset" before each call to imshow. Otherwise all the images "stack up" in the control and it will slow down each additional time imshow is called. cla reset clears out any prior images.
댓글 수: 6
Yang
2012년 3월 17일
Image Analyst
2012년 3월 17일
I'm still not sure what your question is. Is it that you want all 10 images to flash by sequentially and almost instantaneously (because you say it's too slow), OR is it that they appear sequentially instead of at the same time? If you want them all at the same time, use the montage() function in the Image Processing Toolbox to make a mosaic of all your images in one huge single image.
Gerald
2014년 6월 20일
Thank you so much for your "cla reset" answer!! Images are now displayed much faster without truncation!! Thx!
Image Analyst
2014년 6월 20일
You're welcome. Glad my suggestion was helpful to you. Can you go ahead and "Vote" for my answer then?
DEBANJAN DEBNATH
2022년 9월 20일
I want it to look like a vedio with high frame per second. Can u help?
Image Analyst
2022년 9월 20일
@DEBANJAN DEBNATH - not enough information. You want what to "look like" a video? Please explain in your own, new discussion thread (not here).
Jan
2012년 3월 16일
0 개 추천
Nothing is wrong. Displaying an image needs some time.
You can use image and let drawnow trigger the screen update of the figure after all images have been inserted.
I assume posting the relevant part of the code and the size of the images might reveal other problems.
카테고리
도움말 센터 및 File Exchange에서 Convert Image Type에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!