Matlab图在黑白和彩色之间来回闪烁

时间:2015-08-12 20:52:35

标签: matlab matlab-figure

我试图显示颜色视差图,但它首先显示黑色和白色,直到我做了“colormap jet'它有颜色。

如何抑制黑白图像?

            imshow(disparityMap, DisparityRange ); 
            title('DISPARITY MAP');
            colormap jet;

1 个答案:

答案 0 :(得分:3)

colormap参数指定为imshow

imshow(disparityMap, DisparityRange, 'colormap', jet);

使用示例

im = imread('cameraman.tif');
imshow(im, [60,200], 'colormap', hsv);

我们得到这张图片:

enter image description here