标签: matlab matlab-figure
我试图显示颜色视差图,但它首先显示黑色和白色,直到我做了“colormap jet'它有颜色。
如何抑制黑白图像?
imshow(disparityMap, DisparityRange ); title('DISPARITY MAP'); colormap jet;
答案 0 :(得分:3)
将colormap参数指定为imshow。
colormap
imshow
imshow(disparityMap, DisparityRange, 'colormap', jet);
im = imread('cameraman.tif'); imshow(im, [60,200], 'colormap', hsv);
我们得到这张图片: