Effacer les filtres
Effacer les filtres

How to make salt pepper noise own code

17 vues (au cours des 30 derniers jours)
Ali Umur Kucur
Ali Umur Kucur le 22 Avr 2020
Réponse apportée : DGM le 22 Avr 2022
After creating a matrix with the for loop, how can we assign the values 0 and 255 in the picture and add salt and pepper noise?

Réponse acceptée

Ameer Hamza
Ameer Hamza le 22 Avr 2020
Modifié(e) : Ameer Hamza le 22 Avr 2020
Try this
im = imread('pears.png');
figure;
ax1 = axes();
imshow(im);
title(ax1, 'original');
a = 0.1; % 10% pixels altered
b = 0.5; % 50% percent white pixels among all altered pixels
n = numel(im(:,:,1));
m = fix(a*n);
idx = randperm(n, m);
k = fix(b*m);
idx1 = idx(1:k);
idx2 = idx(k+1:end);
idx1 = idx1' + n.*(0:size(im,3)-1);
idx1 = idx1(:);
idx2 = idx2' + n.*(0:size(im,3)-1);
idx2 = idx2(:);
im(idx1) = 255;
im(idx2) = 0;
figure;
ax2 = axes();
imshow(im);
title(ax2, 'noisy');
  4 commentaires
Image Analyst
Image Analyst le 23 Avr 2020
Ali, did you try my solution (or even see it below):
noisyImage = imnoise(originalImage,'salt & pepper', 0.05); % Or whatever percentage you want.
It's a lot simpler since it uses the built-in function.
Ali Umur Kucur
Ali Umur Kucur le 23 Avr 2020
Thank you for your answer, but I have to write this salt and pepper noise with my own code, not with the ready function.

Connectez-vous pour commenter.

Plus de réponses (4)

David Welling
David Welling le 22 Avr 2020
An easy way to do this is create a salt and pepper noise image to lay in front of the original image. So you need a way to randomly select pixels to make white. This can easily be done by creating a matrix the same size as your picture, filled with random numbers, and then select a cut off point above which you make pixels white, like this:
floor(rand(1000,1000)+0.01)*255; %array of 1000x1000, with approximately 1 percent white pixels. this can be adjusted by changing the 0.01 in the equation
  1 commentaire
Ali Umur Kucur
Ali Umur Kucur le 22 Avr 2020
thank you for answer.

Connectez-vous pour commenter.


Image Analyst
Image Analyst le 22 Avr 2020
The easiest way is to use the built-in imnoise() function:
noisyImage = imnoise(originalImage,'salt & pepper', 0.05); % Or whatever percentage you want.
  2 commentaires
Ali Umur Kucur
Ali Umur Kucur le 23 Avr 2020
Thank you for your answer, but I have to write this salt and pepper noise with my own code, not with the ready function.
Image Analyst
Image Analyst le 23 Avr 2020
Why? It's not labeled as homework. If it is your assignment and you turned in Ameer's code as your own, then you could run into trouble with your teacher and institution (possibly cheating). In the future, tag homework with the homework tag so people don't give you complete solutions that will get you into trouble.

Connectez-vous pour commenter.


Mykola Ponomarenko
Mykola Ponomarenko le 4 Sep 2021
function [ima,map] = salt_and_pepper(ima, prob)
% ima - grayscale or color input image; prob - probability of salt&pepper noise (0..1)
[y,x,z]=size(ima);
map=repmat(rand(y,x)<prob, [1 1 z]);
sp=repmat(round(rand(y,x))*255, [1 1 z]);
ima(map)=sp(map);
end

DGM
DGM le 22 Avr 2022
This is the way that MIMT imnoiseFB() does it when in fallback mode. This will replicate the behavior of IPT imnoise(). Note that this works regardless of the class of the input image.
inpict = imread('cameraman.tif');
snpdensity = 0.05; % default for imnoise()/imnoiseFB()
s0 = size(inpict);
noisemap = rand(s0);
outpict = im2double(inpict);
mk1 = noisemap < (snpdensity/2);
outpict(mk1) = 0;
outpict(~mk1 & (noisemap < snpdensity)) = 1;
imshow(outpict)

Catégories

En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by