|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
<P>我用GUI做了一个模块,在GUI中点运行没有问题,但是在matlab的命令框中直接用open ****.fig,却不成功。里面有一个打开文件的open按钮报错,不明原因。以下是这部分的代码。<BR><BR>function openfile_pushbutton_Callback(hObject, eventdata, handles)<BR>% hObject handle to openfile_pushbutton (see GCBO)<BR>% eventdata reserved - to be defined in a future version of MATLAB<BR>% handles structure with handles and user data (see GUIDATA)<BR>global sourceimage;<BR><FONT color=#1a1ae6>cla(handles.imagesource_axes,'reset');</FONT> <BR>cla(handles.imageresult_axes,'reset');<BR>axes(handles.imagesource_axes);<BR>set(handles.direct_popupmenu,'Value',1); %%%%%边缘检测中默认的方向是both<BR>set(handles.low_edit,'String','0.2'); %%%%以下三行设置对比度增强中的各个默认值<BR>set(handles.high_edit,'String','0.8');<BR>%set(handles.gamma_edit,'String','0.5');<BR>[sourceimage,map]=imread(uigetfile({'*.tif';'*.JPEG'}, 'Open an picture'));<BR>imshow(sourceimage,map);<BR>hold on;<BR><BR>蓝色部分及以下就是不执行,直晕,为什么?</P> |
|