If after snapsnot, keeps us take 2 start and end frames to axes2 (original image) and axes3 (final image) to perform data so Uitable 1 (from the original image data) 2 (final image). That is how like the image below?
조회 수: 2 (최근 30일)
이전 댓글 표시
댓글 수: 0
채택된 답변
Geoff Hayes
2016년 4월 10일
편집: Geoff Hayes
2016년 4월 10일
Marquel - suppose you have a cell array of frames or images. If you wish to put the first frame in axes2 and the last frame in axes3, then you could do something like
image(myFrames{1},'Parent',handles.axes2);
image(myFrames{end},'Parent',handles.axes3);
The above two lines would be added to the callback for your Snapshot button.
You would then do any needed processing to create values that you would then store in your table.
EDIT replaced the cell array accessing with braces as per Image Analyst's below comment.
댓글 수: 4
Walter Roberson
2016년 4월 20일
To copy the complete error message, go to the command window when it is showing, highlight the whole message (everything in red) with your mouse, use your windows copy sequence, control-C, come over here, click to Comment, click on Control-V to paste. Then select everything that you just pasted in and click on the button marked "{} Code".
추가 답변 (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!