필터 지우기
필터 지우기

Can Subplots have own colormaps?

조회 수: 22 (최근 30일)
Roger Breton
Roger Breton 2023년 6월 14일
답변: DGM 2023년 6월 14일
I must be missing something obvious.. but I can get each subplots colorbars to plot with its own colormap? Here is my code:
RGB = imread('FleursLilac.png');
[X,cmap] = rgb2ind(RGB,32);
RGB2 = imread('Brown.jpg');
[X2,cmap2] = rgb2ind(RGB2,32);
A = reshape(1:36, 6, 6); % A = reshape(1:256, 16, 16);
subplot(1,4,1)
imshow(RGB)
title('Original RGB Image')
subplot(1,4,2);
imshow(RGB2);
title('Target Image')
colormap(cmap2);
colorbar;
subplot(1,4,3);
imagesc(A);
colormap(cmap);
colorbar;
title('Colormap A')
subplot(1,4,4);
imagesc(A);
colormap(cmap);
colorbar;
title('Colormap B')
And here is the result, in all its glory...
"Ideally", Colormap A and B should correspond to each respective images from which is was extracted.

답변 (1개)

DGM
DGM 2023년 6월 14일
Yes, but you have to be careful. By default, colormap() applies to the current figure. If you want it to apply to the current axes alone, you can specify the axes object.
RGB = imread('flowers.png');
[X,cmap] = rgb2ind(RGB,32);
RGB2 = imread('shoes.png');
[X2,cmap2] = rgb2ind(RGB2,32);
A = reshape(1:36, 6, 6); % A = reshape(1:256, 16, 16);
subplot(2,2,1)
imshow(RGB)
title('Original RGB Image')
subplot(2,2,2);
imshow(RGB2);
title('Target Image')
colormap(cmap2);
colorbar;
hax = subplot(2,2,3);
image(A);
colormap(hax,cmap);
colorbar;
title('Colormap A')
hax = subplot(2,2,4);
image(A);
colormap(hax,cmap2);
colorbar;
title('Colormap B')
Two things to note: First, I reordered the subplots so that it would be readable on the forum. Second, since the swatch charts are basically indexed color images, we should be using image() instead of imagesc() so that the colormapping is direct. Alternatively, if using imshow(), you would use something like
imshow(A,cmap)
colorbar;
instead of calling colormap() explicitly.

카테고리

Help CenterFile Exchange에서 Red에 대해 자세히 알아보기

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by