【发布时间】:2015-10-19 04:44:21
【问题描述】:
我在 Matlab 中有一个双精度图像。我怎样才能imshow呢?谢谢。
load('file.mat');
b=d.l{2,1}.a{1,1}; %//b is an image <96x96x4 double>
imshow(b);
【问题讨论】:
-
imshow不支持显示 4 通道图像。这张图片应该代表什么? -
如果您的图片是
NxMx3,并且您在评论中打错字,请使用imshow(b,[])自动调整imshow函数的限制
标签: image matlab image-processing