How to open image directory in matlab GUI and processed using external functions?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (1)
Image Analyst
le 2 Mai 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?
Voir également
Catégories
En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!