How can i find out homogeneity of an image?
11 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Syed Zenith Rhyhan
il 23 Giu 2019
Risposto: KALYAN ACHARJYA
il 23 Giu 2019
I try on this code
homogeneity = graycoprops(graycomatrix(img), 'Homogeneity')
but can't find out.please help me with source code
0 Commenti
Risposta accettata
KALYAN ACHARJYA
il 23 Giu 2019
Try this way-
I=imread('circuit.tif');
%...........^^^ change name
% creation of gray-level co-occurrence matrices from image
glcm=graycomatrix(I,'Offset',[2 0;0 2])
stats=graycoprops(glcm,{'contrast','homogeneity'})
Stats gives the contrast and homogeneity.
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Image Processing Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!