Filter löschen
Filter löschen

how can I replace the zeros in the image?

3 Ansichten (letzte 30 Tage)
payman khayree
payman khayree am 16 Jun. 2015
Kommentiert: payman khayree am 18 Jun. 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?

Akzeptierte Antwort

Image Analyst
Image Analyst am 16 Jun. 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 Kommentare
Image Analyst
Image Analyst am 18 Jun. 2015
You're welcome. Are we done then? If so, please mark as Accepted.
payman khayree
payman khayree am 18 Jun. 2015
thanks

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by