Adding black and white pixels into an image.

조회 수: 7 (최근 30일)
Rafael Rivas
Rafael Rivas 2021년 8월 8일
편집: KSSV 2021년 8월 8일
I have a guassian lab where I have to show dead pixles (black and white)
The first part of my code has this where 128= mean and std = 8and the image size is 256*256.
When I run this code i get a pretty gray picture, which was expected.
I = normrnd(128,8,[256,256]);
imshow(I,[0,255]);
Now, i have to find the uniform distibution to replace 5% of the samples with black (i=0) and 5% of the pixels white (i=255). I'm having a hard time doing that.

채택된 답변

KSSV
KSSV 2021년 8월 8일
편집: KSSV 2021년 8월 8일
I = normrnd(128,8,[256,256]);
imshow(I,[0,255]);
% Pick indices to replace with black and white
[m,n] = size(I) ;
idx = randperm(m*n,round(m*n*10/100)) ; % 5% +5% = 10%
% Replace with black
idx1 = randsample(idx,length(idx)/2) ;
idx2 = setdiff(idx,idx1);
I(idx1) = 0 ; % replace with black
I(idx2) = 255 ; % Replace with white
imshow(I)
  댓글 수: 2
Rafael Rivas
Rafael Rivas 2021년 8월 8일
It looks better than what I had but for the I(idx), should it be I(idx1) and I(idx2)? Otherwise when I run the code, I only get gray and white and no black?
KSSV
KSSV 2021년 8월 8일
Yes yes... Typo error... Edited the code...

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by