- /
-
Rose
on 17 Oct 2022
- 1
- 7
- 0
- 0
- 193
f=0.009;
F=zeros(1,2,3);
for x=1:3
for y=1:3
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))