Similarity level of the pixel
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Nataliya
le 14 Août 2015
Réponse apportée : Image Analyst
le 14 Août 2015
Hi, I want to compute the similarity of the pixel with its neighbors. Basically what I want is to assign more weights to the pixels that are similar to its neighboring pixels and less weight to pixels that are dissimilar. Is there any feature or some method that will do this. Kindly suggest. Thanks
0 commentaires
Réponse acceptée
Image Analyst
le 14 Août 2015
How about scanning with a 3x3 window and computing the standard deviation - that will be 0 if all the pixels are the same and high if they're different. Then subtract that from 255
out = 255 - stdfilt(grayImage);
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!