why does the green in RGB come out yellow

1 vue (au cours des 30 derniers jours)
yair suari
yair suari le 31 Juil 2011
i want to use the following code to demonstrate what RGB is but somehow the green comes yellow. anyone knows why is that?
x=-1:.01:1
y=-1:.01:1
[X,Y]=meshgrid(x,y);
Z=sqrt(X.^2+Y.^2);
Z(Z>1)=1;
R=ones(330,330);
G=ones(330,330);
B=ones(330,330);
R(1:201,1:201)=Z;
G(76:276,76:276)=Z;
B(1:201,126:326)=Z;
img=cat(3,R,G,B);
h=image(img)
thanks in advance yair

Réponse acceptée

the cyclist
the cyclist le 31 Juil 2011
For all three colors, you are not getting RGB, but the complementary colors cyan,magenta,yellow.
Here's RGB corrected, but with a black background:
x=-1:.01:1;
y=-1:.01:1;
[X,Y]=meshgrid(x,y);
Z=sqrt(X.^2+Y.^2);
Z(Z>1)=1;
R=zeros(330,330);
G=zeros(330,330);
B=zeros(330,330);
R(1:201,1:201) = 1-Z;
G(76:276,76:276) = 1-Z;
B(1:201,126:326) = 1-Z;
figure
img=cat(3,R,G,B);
h=image(img)

Plus de réponses (0)

Catégories

En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by