用于重叠图表/轮廓的不同颜色图

时间:2016-06-13 17:09:47

标签: matlab matlab-figure colormap

我在MATLAB中有两个矩阵,img1img2。我想将它们与不同的色彩图混合使用/轮廓化。但是,如果我这样做:

imagesc(img1); colormap(gray);
hold on
contour(img2); colormap(parula);
hold off

或者这个:

imagesc(img1); colormap(gray);
hold on
h = imagesc(img2); colormap(parula);
set(h, 'AlphaData', 0.5);
hold off

它将 的色彩映射设置为parula,这无法实现重叠/混合的目的。

0 个答案:

没有答案