How to calculate intensity statistical features of gray scale images in MATLAB?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Javaid Iqbal
le 15 Fév 2018
Commenté : Image Analyst
le 27 Fév 2018
Please help me how to calculate first order intensity statistics features of gray scale images in MATLAB Thanks
0 commentaires
Réponse acceptée
Image Analyst
le 15 Fév 2018
Try these:
meanGrayLevel = mean2(grayImage)
stdDev = std2(grayImage)
v = var(grayImage(:))
2 commentaires
Image Analyst
le 27 Fév 2018
Not sure how anyone would have known that until now, but anyway, use graycomatrix() and graycoprops().
Plus de réponses (0)
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!