how to execute stop(vid) when i close the imshow figure while running a while loop?
조회 수: 3 (최근 30일)
이전 댓글 표시
i am capturing images from a camera in real time and displaying the processed image in a while loop. As soon as I close the figure window, an error pops up. I want to execute stop(vid) after i close the figure and don't want the error to exist.
the error is as given below
Error using matlab.ui.Figure/set Invalid or deleted object.
Error in imshow (line 343) set(fig_handle, 'NextPlot', 'replacechildren')
Error in LiveDetector (line 40) imshow(imgOut);toc;
댓글 수: 5
Walter Roberson
2019년 1월 12일
use the close request callback that I linked to . That is exactly the kind of purpose the callback was designed for.
답변 (1개)
Walter Roberson
2018년 12월 11일
https://www.mathworks.com/help/matlab/ref/matlab.ui.figure-properties.html#buiwuyk-1-CloseRequestFcn
use a callback to detect the close attempt .use it to stop the video before deleting the figure.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Acquisition Support Packages for Hardware Adaptors (Generic Video Interface)에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!