• Remix
  • Share
  • New Entry

on 4 Oct 2021
  • 1
  • 19
  • 0
  • 0
  • 271
image=zeros(400,400,3);
image(50:200,10:300,1)=0.7;
image(201:400,10:80,1) = 0.6;
image(240:300,100:150,1) = 0.5;
image(240:300,190:240,1) = 0.5;
image(320:350,150:190,1) = 0.5;
image(350:360,130:139,1) = 0.7;
image(201:400,301:400,1) = 0.5;
image(1:400,:,2) = rand(400,400);
imshow(image);
Remix Tree