send imtool image to my GUIDE GUI

조회 수: 3 (최근 30일)
Ely Raz
Ely Raz 2017년 6월 1일
답변: Ely Raz 2017년 6월 2일
In the following function, I send an image from my GUI axes to an imtool in order to do some manipulations. How can I transfer the manipulated image back to my GUI axes?
Script:
% --- Executes on button press in imtoolbutton.
function imtoolbutton_Callback(hObject, eventdata, handles)
% hObject handle to imtoolbutton (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
J = getappdata(handles.imageAxes , 'yourVariable');
I=imtool(J);
axes(handles.imageAxes);
imshow(I);
setappdata(handles.imageAxes, 'yourVariable', I);

답변 (2개)

Walter Roberson
Walter Roberson 2017년 6월 1일
J = getappdata(handles.imageAxes , 'yourVariable');
h = imtool(J);
At this point you would want to give the user time to manipulate the image. Once they have done that,
ax = findobj(h,'tag','hImscrollpanelAxes');
I = ax.Children.CData;
imshow(I, 'Parent', handles.imageAxes);
setappdata(handles.imageAxes, 'yourVariable', I);

Ely Raz
Ely Raz 2017년 6월 2일
Thanks a lot. The imtool works fine but the returned image is not shown, any reason why?

카테고리

Help CenterFile Exchange에서 Explore and Edit Images with Image Viewer App에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by