How to create a 7*9 black and white image by using 0 and 1?

1 次查看(过去 30 天)

回答(1 个)

Jan
Jan 2021-5-12
编辑:Jan 2021-5-12
T = [0, 0, 0, 0, 0, 0, 0, 0, 0; ...
0, 1, 1, 1, 0, 1, 1, 1, 0; ...
0, 0, 1, 0, 0, 1, 0, 1, 0; ...
0, 0, 1, 0, 0, 1, 0, 1, 0; ...
0, 0, 1, 0, 0, 1, 0, 1, 0; ...
0, 0, 1, 0, 0, 1, 1, 1, 0; ...
0, 0, 0, 0, 0, 0, 0, 0, 0];
figure;
colormap([0,0,0; 1,1,1])
imagesc(T)
% Or:
figure;
image(cat(3, T, T, T)); % Using RGB colors

类别

Help CenterFile Exchange 中查找有关 Red 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by