필터 지우기
필터 지우기

to display an 8bit image

조회 수: 10 (최근 30일)
ash fairy
ash fairy 2017년 6월 18일
답변: Image Analyst 2017년 6월 18일
i have an 8 bit image which is green in colour.... whenever m loading, the color appears as grey...how do i convert it and display as its true green color??

채택된 답변

Image Analyst
Image Analyst 2017년 6월 18일
If you want to zero out the red and blue channels of your RGB image, you can do this:
rgbImage(:, :, [1, 3]) = 0;
imshow(rgbImage);
The reason that it was appearing gray is that the red and blue channels are the same as the green channel. Zeroing them out will make it look green.
Alternatively you can extract the green channel and apply a colormap.
rgbImage = imread('peppers.png'); % Sample image.
greenChannel = rgbImage(:, :, 2); % Extract green channel
z = zeros(256, 1);
ramp = (0:255)' / 255;
cmap = [z, ramp, z];
colormap(cmap);
colorbar;
imshow(greenChannel, cmap);

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by