Effacer les filtres
Effacer les filtres

how can I replace the zeros in the image?

3 vues (au cours des 30 derniers jours)
payman khayree
payman khayree le 16 Juin 2015
Commenté : payman khayree le 18 Juin 2015
I want to replace the zero valued pixels inside the object with the average of their non-zeros neighbours. whats the best way doing that?

Réponse acceptée

Image Analyst
Image Analyst le 16 Juin 2015
That's similar to what I do with my salt and pepper denoising program (attached) - I replace with the median.
To get the average, you'd use conv2() instead of medfilt2(). You'd have to replace the zero pixels with nan's and then see if conv2() will work if there are nan's in the image. If so, do
grayImage(grayImage == 0) = nan;
blurredImage = conv2(grayImage, ones(5)/25, 'same');
% Replace nan's with average
badPixels = isnan(grayImage);
grayImage(badPixels) = blurredImage(badPixels);
  3 commentaires
Image Analyst
Image Analyst le 18 Juin 2015
You're welcome. Are we done then? If so, please mark as Accepted.
payman khayree
payman khayree le 18 Juin 2015
thanks

Connectez-vous pour commenter.

Plus de réponses (0)

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