1

我有两个矩阵,第一个是来自 dicom 图像(灰度)的 ROI,第二个是值在 0-1 之间的矩阵。

在第二个矩阵中,我做了一个阈值处理,只保留了一个范围(0.6 -1.0)的值。我想叠加两个矩阵图像并将结果显示为一个数字,这意味着背景灰色图像和叠加彩色图像(在非零值区域)。

你能给我一些帮助吗?谢谢

4

1 回答 1

2

怎么样

figure;
imshow( first(:,:,[1 1 1]) ); % make the first a grey-scale image with three channels so it will not be affected by the colormap later on
hold on;
t_second = second .* ( second >= .6 & second <= 1.0 ); % threshold second image
ih = imshow( t_second );
set( ih, 'AlphaData', t_second );
colormap jet
于 2013-04-24T07:32:20.973 回答