필터 지우기
필터 지우기

I want code to convert color image to rgb color spaces exactly

조회 수: 2 (최근 30일)
I want code to convert color image to rgb color spaces exactly
  댓글 수: 2
Image Analyst
Image Analyst 2015년 9월 2일
What does that mean? Why is your color image not already RGB? What color space is it in, and how did you create it in that color space? http://www.mathworks.com/matlabcentral/answers/728-how-do-i-write-a-good-question-for-matlab-answers
Walter Roberson
Walter Roberson 2015년 9월 2일
편집: Walter Roberson 2015년 9월 2일
In a duplicate Question, the user posted
X=imread('images.jpg'); R = X(:,:,1); image(R), colormap([[0:1/255:1]', zeros(256,1), zeros(256,1)]), colorbar;
%Green Component G = X(:,:,2); figure; image(G), colormap([zeros(256,1),[0:1/255:1]', zeros(256,1)]), colorbar;
%Blue component B = X(:,:,3); figure; image(B), colormap([zeros(256,1), zeros(256,1), [0:1/255:1]']), colorbar;

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

채택된 답변

Walter Roberson
Walter Roberson 2015년 9월 2일
X = im2double(imread('images.jpg'));
R = X(:,:,1);
G = X(:,:,2);
B = X(:,:,3);
z = zeros(size(R));
Rimg = cat(3, R, z, z);
Gimg = cat(3, z, G, z);
Bimg = cat(3, z, z, B);
L256 = linspace(0,1,256).';
z256 = zeros(256,1);
mapR = [L256, z256, z256];
mapG = [z256, L256, z256];
mapB = [z256, z256, L256];
figure; image(Rimg); colormap(mapR); colorbar();
figure; image(Gimg); colormap(mapG); colorbar();
figure; image(Bimg); colormap(mapB); colorbar();
  댓글 수: 2
venmal devi
venmal devi 2015년 9월 2일
its displaying R ,G and B color ..but behind every image it showing black gray image why ?
Walter Roberson
Walter Roberson 2015년 9월 2일
I do not know what you mean by a "black gray image" ? Please capture a portion of the screen and post the image.

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

추가 답변 (0개)

카테고리

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