2つの画像AとBが重なっています。オーバーラップイメージは緑色 - マゼンタ色を示します:青色と赤色が必要です。私は、次のコードを使用:デフォルトことでオーバーラップイメージの色を制御する方法は?
c=imfuse(A,B,'falsecolor','Scaling','joint');
redChannel = c(:, :, 1);
blueChannel = c(:, :, 3);
rgbImage = cat(2,redChannel,blueChannel);
imshow (rgbImage)
代わりに
'red-cyan'
を使用できます。機能を使用せずに独自のRGB画像を作成できますか?例えば: 'rgbImage(:、:、1)= A; rgbImage(:、:、2)= 0; rgbImage(:、:、3)= B; ' – Zep