필터 지우기
필터 지우기

Changing photo intensity without changes to color map

조회 수: 1 (최근 30일)
adrian leung
adrian leung 2021년 12월 13일
답변: Image Analyst 2021년 12월 13일
Just curious is it possible to change intensity/brightness without making changes to the color map itself?

답변 (2개)

Chunru
Chunru 2021년 12월 13일
try "brighten":
subplot(121);
I = imread("pout.tif");
imshow(I);
subplot(122)
J = imadjust(I, [0.3 0.7]);
imshow(J)
  댓글 수: 1
adrian leung
adrian leung 2021년 12월 13일
Thanks for the prompt reply.
I saved the final image as uncomrpessed tiff, but its an RGB, not indexed, which defeats the purpose of keeping the original source color map.
Also the dimension is reduced to 893x1273 instead of original 1200x1600.
Is there anyway i can bypass these problems?
Tried using rgb2ind with a colormap (excel table) in variable tab generated from source tiff, however theres error i cant comprehend.
I = imread("sc.tif ");
J = imadjust(I, [0.3 0.7 ]);
K = rgb2ind(J,colormap)
imshow(K)
Error using dither>parse_inputs (line 92)
DITHER(RGB,map): the RGB image has to be a three-dimensional array.
Error in dither (line 47)
[X,m,qm,qe] = parse_inputs(varargin{:});
Error in rgb2ind (line 110)
X = dither(RGB,map);
Error in untitled (line 4)
K = rgb2ind(J,colormap)

댓글을 달려면 로그인하십시오.


Image Analyst
Image Analyst 2021년 12월 13일
Sure. For a gray scale image you can change it in a variety of ways like adding, subtracting, dividing, using imdjust(), adapthisteq(), etc. Gray scale images don't really have a colormap. When you do that, you're changing the image itself.
Indexed images have a colormap. If you change the image, the values will be different and will now be using a different color from the colormap. So you don't really normally want to do that. You could change the colormap itself, or you could use caxis() to zoom in on a particular part of the colormap and apply just that part. Changing the colormap on an indexed image only changes it's displayed appearance. The image itself does not change - only the colormap.

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by