马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
各位大虾好!
我做了一个界面如图所示:其中"选择叶片"按扭的回掉函数如下,它把图片读入放在axes1上,现在我放置了一个"病斑分割"按扭,想把axes1上的图片作分割处理,请问用什么办法来获得axes1 上的图片啊,也就是"病斑分割"按扭的回掉函数应该怎么写?
请求各位指教,谢谢!!!!
"选择叶片"按扭的回掉函数
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)
[FileName,PathName]=uigetfile(...
{'*.bmp;*.jpg;*.tif;*.png','IMAGE Files (*.bmp,*.jpg,*.tif,*.png)';
'*.bmp','Bitmap (*.bmp)'; ...
'*.jpg','Joint Photographic Experts Group (*.jpg)'; ...
'*.tif','Tagged Image files (*.tif)'; ...
'*.png','Portable Network Graphics (*.png)'; ...
'*.*','All Files (*.*)'},...
'File Selector','')
x1=imread([PathName,FileName]);
axes(handles.axes1);
imshow(x1)
"病斑分割"按扭回掉函数按扭应怎么写?
function pushbutton3_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton3 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
[ 本帖最后由 eight 于 2007-6-19 18:50 编辑 ] |