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
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.
채택된 답변
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 Center 및 File 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!