Pixel based image creating

6 次查看(过去 30 天)
Hi. I want to create the following image by Matlab Code. What is the easiest way to do it. Thanks.
  3 个评论
Aditya Verma
Aditya Verma 2020-6-16
编辑:Aditya Verma 2020-6-16
Hi, are you looking to create the same image, or similar pixel based images? You might need to enter the values in matrix manually, as pointed by KSSV.
Taha Erkam Orhan
Taha Erkam Orhan 2020-6-16
I can enter the values manually. Similar pixel based image example should work for me.

请先登录,再进行评论。

采纳的回答

KSSV
KSSV 2020-6-16
m = 15; n = 15;
[X,Y] = meshgrid(1:m,1:n) ;
Z = 255*ones(m,n) ;
idx = randperm(m*n,100) ;
Z(idx) = 0 ;
% pcolor(X,Y,Z)
imshow(Z)
grid on

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Read, Write, and Modify Image 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by