matlab中怎样将imshow和plot画在同一幅图中
mi2是一个256*256的矩阵,我想要的显示效果是这样的用下面的程序显示不对,求指点。figure;imshow(mat2gray(mi2))hlodonplot(mi...
mi2是一个256*256的矩阵,我想要的显示效果是这样的
用下面的程序显示不对,求指点。
figure;
imshow(mat2gray(mi2))
hlod on
plot(mi2(:,N/2)); 展开
用下面的程序显示不对,求指点。
figure;
imshow(mat2gray(mi2))
hlod on
plot(mi2(:,N/2)); 展开
3个回答
展开全部
subplot(2,1,1)
imshow(1.tif');
subplot(2,1,2)
imshow(2.tif');
或者:
% Display two images in single figure window using subplot.
hax1 = subplot(1,2,1), imshow('pout.tif')
hax2 = subplot(1,2,2), imshow('cameraman.tif')
% Use Parent parameter to change image displayed in first axes.
imshow('cameraman.tif','Parent',hax1);
imshow(1.tif');
subplot(2,1,2)
imshow(2.tif');
或者:
% Display two images in single figure window using subplot.
hax1 = subplot(1,2,1), imshow('pout.tif')
hax2 = subplot(1,2,2), imshow('cameraman.tif')
% Use Parent parameter to change image displayed in first axes.
imshow('cameraman.tif','Parent',hax1);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询