- /
-
The Colors with Sin_Cosine
on 15 Oct 2022
- 2
- 10
- 0
- 0
- 203
sz=400
f=0.009;
F=zeros(sz,sz,3);
for x=1:sz
for y=1:sz
F(x,y,1)=127*cos(2*pi*f*y)+127*sin(2*pi*f*x);
F(x,y,2)=127*sin(2*pi*f*y)+127*cos(2*pi*f*x);
F(x,y,3)=127*cos(2*pi*f*y)+127*sin(2*pi*f*x);
end
end
imshow(uint8(F))