Effacer les filtres
Effacer les filtres

how to find the neighbour pixel having maximum value?

4 vues (au cours des 30 derniers jours)
sheno39
sheno39 le 23 Sep 2013
Commenté : sheno39 le 30 Sep 2013
i have calculated the parzen density for an image. Now i have to find the maximum valued pixel of an image in the 3x3 matrix window
  6 commentaires
Image Analyst
Image Analyst le 26 Sep 2013
See attached demos below.
sheno39
sheno39 le 30 Sep 2013
thank you sir.

Connectez-vous pour commenter.

Réponse acceptée

Image Analyst
Image Analyst le 23 Sep 2013
out = imdilate(grayImage, true(3)); % In the IMage Processing Toolbox.
  1 commentaire
Image Analyst
Image Analyst le 24 Sep 2013
Modifié(e) : Image Analyst le 24 Sep 2013
Your original question said to look in the 3 by 3 window - all 9 pixels. But your latest comment says to look only to the 8 neighbors and don't include the central pixel. So in that case, you need to make a "hole" in the center of the structuring element:
out = imdilate(grayImage, [1,1,1;1,0,1;1,1,1]);
The above looks only at the 8 pixels on the outer border, and does not look at the 9th pixel in the very center.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Read, Write, and Modify Image 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