MATLAB: Generate a two-dimensional square and rectangular shape digital image.

Image Processing Toolboxtwo-dimensional square

The digital image should be 20 x 20 pixels in size and a complete white object against a black background.

Best Answer

Something like
grayImage = zeros(20,20, 'uint8');
grayImage(10:14, 4:12) = 255;
imshow(grayImage, []);