Pixel based image creating
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Taha Erkam Orhan
il 16 Giu 2020
Commentato: Taha Erkam Orhan
il 16 Giu 2020
Hi. I want to create the following image by Matlab Code. What is the easiest way to do it. Thanks.
3 Commenti
Aditya Verma
il 16 Giu 2020
Modificato: Aditya Verma
il 16 Giu 2020
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.
Risposta accettata
KSSV
il 16 Giu 2020
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
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Read, Write, and Modify Image in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!