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

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

 採用された回答

Image Analyst
Image Analyst 2016 年 8 月 30 日
Something like
grayImage = zeros(20,20, 'uint8');
grayImage(10:14, 4:12) = 255;
imshow(grayImage, []);

その他の回答 (0 件)

カテゴリ

質問済み:

2016 年 8 月 30 日

回答済み:

2016 年 8 月 30 日

Community Treasure Hunt

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

Start Hunting!

Translated by