How to use montage for RGB images

3 次查看(过去 30 天)
RuiQi
RuiQi 2016-6-21
Hi,
How can i show a montage of my rgb images ? Right now its treating the rgb channels as if they were separate grayscale images.

回答(1 个)

Viktória Nemkin
Viktória Nemkin 2018-4-5
编辑:Viktória Nemkin 2018-4-5
Hello,
I had the same problem and this was the first Google search result, so for anyone who finds this:
Instead of doing this:
allImages(:,:,:,1) = image;
montage(allImages, 'Size', [3, 3]);
Which will display a 3x3 matrix with the first row displaying the red, green and blue channels separately, do this:
allImages{1,1} = image;
montage(allImages, 'Size', [3, 3]);
Which will display the image in the top left corner in RGB.

类别

Help CenterFile Exchange 中查找有关 Image Processing and Computer Vision 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by