Hi. I want to create the following image by Matlab Code. What is the easiest way to do it. Thanks.

댓글 수: 3

Do you know the locations to fix the pixel values?
m = 100 ;
I = zeros(m) ;
In the above at the locations (i,j) change value from 0 to 1.
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일

0 개 추천

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개)

카테고리

도움말 센터File Exchange에서 Read, Write, and Modify Image에 대해 자세히 알아보기

질문:

2020년 6월 16일

댓글:

2020년 6월 16일

Community Treasure Hunt

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

Start Hunting!

Translated by