필터 지우기
필터 지우기

Enhancing crop code in Matlab gui

조회 수: 1 (최근 30일)
sha
sha 2012년 11월 1일
Hi there,
I have some problems in enhancing for my code. What i have done is loading 3 images and cropping the image individually. However, i wanted to crop image 1, and subsequently, the other 2 images will follow the exact size of the cropping image 1.
this code is just for cropping individual image:
-----------------------------------------
[handles.currentimage handles.cropRect] = ...
imcrop(handles.axes2);
axes(handles.axes2);
imshow(handles.currentimage);
guidata(hObject, handles);
[handles.currentimage2 handles.cropRect] = ...
imcrop(handles.axes3);
axes(handles.axes3);
imshow(handles.currentimage2);
guidata(hObject, handles);
[handles.currentimage3 handles.cropRect] = ...
imcrop(handles.axes4);
axes(handles.axes4);
imshow(handles.currentimage3);
guidata(hObject, handles);
----------------------------------------------------
Can anyone help??? THANKSSS!!

답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Filtering and Enhancement에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by