필터 지우기
필터 지우기

How to capture image in gui?

조회 수: 3 (최근 30일)
syafini alias
syafini alias 2018년 2월 16일
댓글: Image Analyst 2022년 3월 17일
I have created gui with two axes and one pushbutton. I use axes1 to view live video from webcam and i don't have problem with it. But i don't know how to capture the image from axes1 and display the image in axes2.

채택된 답변

Image Analyst
Image Analyst 2018년 2월 17일
Try this:
axes(handles.axes1); % Switch focus to axes1.
theImage = getimage(); % Snag the image out of axes1.
axes(handles.axes2); % Switch focus to axes2.
imshow(theImage); % Place theImage into axes2.
If you want to make more compact, you could skip axes() and pass the axes handle into getimage() and imshow() but then to get other things, like title() etc., to appear on the correct axes you'll have to pass the handles into those functions too. If you call axes() things like titles will appear on the current axes (the one you just passed into axes() function).
  댓글 수: 3
OMKAR KATKOLE
OMKAR KATKOLE 2022년 3월 17일
source code pls?
Image Analyst
Image Analyst 2022년 3월 17일
@OMKAR KATKOLE I showed the source code. It's just those 4 lines of code.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Roy Kadesh
Roy Kadesh 2018년 2월 16일
You can use screencapture to use Java to make a capture of the contents of the axis, which you can then imshow (or image, or set(ax2,'CData',IM)).
  댓글 수: 1
Image Analyst
Image Analyst 2022년 3월 17일
Or you can use exportgraphics() or copygraphics() if you have R2020b or later.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Printing and Saving에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by