MATLAB GUI点击按钮图像并没有在指定的axes4和axes5位置分别显示
globalim[filename,pathname]=uigetfile({'*.jpg';'*.jpeg'},'读取图片');ifisequal([filename,...
global im
[filename,pathname]=uigetfile({'*.jpg';'*.jpeg'},'读取图片');
if isequal([filename,pathname],[0,0])
errordlg('您还没有选择图片!!');
return;
else
filepath=fullfile(pathname,filename);
im=imread(filepath);
axis(handles.axes5);
imshow(im);
end
R=rgb2gray(im);
axis(handles.axes4);
imshow(R);
以上是我callback函数的所有代码,不知道哪有有问题,图像只在axes5中显示,而且显示的是灰度图。 展开
[filename,pathname]=uigetfile({'*.jpg';'*.jpeg'},'读取图片');
if isequal([filename,pathname],[0,0])
errordlg('您还没有选择图片!!');
return;
else
filepath=fullfile(pathname,filename);
im=imread(filepath);
axis(handles.axes5);
imshow(im);
end
R=rgb2gray(im);
axis(handles.axes4);
imshow(R);
以上是我callback函数的所有代码,不知道哪有有问题,图像只在axes5中显示,而且显示的是灰度图。 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询