I can able to browse the image but the image is not displaying in the gui ..any body plz help....i m getting thi error..Reference to non-existent field 'edit1'.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Executes on button press in pushbutton1.
function pushbutton1_Callback(hObject, eventdata, handles)
handle.output=hObject;
[fn pn]=uigetfile('*.bmp','selet bmp file');
complete=strcat(pn,fn);
set(handles.edit1,'string',complete);
I=bmpread(complete);
imshow(I,[]);
guidata(hObject,handles);
1 Kommentar
Geoff Hayes
am 20 Sep. 2016
aditya - is edit1 a valid field within the handles structure? Put a breakpoint at the line
set(handles.edit1,'string',complete);
and run your GUI. When the debugger pauses at this line, look at handles. Does it have a field named edit1? If not, which is true given the error message, then have you changed the Tag property from one of your edit controls to something else?
Antworten (0)
Siehe auch
Kategorien
Mehr zu Environment and Settings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!