How to open image directory in matlab GUI and processed using external functions?
1 view (last 30 days)
Show older comments
hi, i have a question regarding matlab GUI. how can i open the image directory and then use the image throughout the whole GUI? i have external functions for the segmentation process but the image displayed seems to be outside of the axes.
% --- Executes on button press in pushbutton1.
function pushbutton1_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
global im FileName
axes(handles.axes1);
[im,PathName] = uigetfile('*.jpg','Select the MATLAB code file');
FileName=im;
imshow(FileName);
% SelectFile=funGetpushbutton1(hObject, eventdata, handles);
% --- Executes on button press in pushbutton2.
function pushbutton2_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton2 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
global im FileName
FileName=im
b=badrulsegmentation (FileName);
axes(handles.axes1);
as you can see above, my function (badrulsegmentation) is my function for segmentation process. when it comes to the function, all the images were displayed outside of the axes. where did i do wrong? please help me
0 Comments
Answers (1)
Image Analyst
on 2 May 2016
pushbutton1 will display the chosen image in axes1. Where does pushbutton2 callback and the badrulsegmentation() function display it? When you say "all the images were displayed outside of the axes" then where were they?
See Also
Categories
Find more on Migrate GUIDE Apps in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!