How can i find out homogeneity of an image?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Syed Zenith Rhyhan
am 23 Jun. 2019
Beantwortet: KALYAN ACHARJYA
am 23 Jun. 2019
I try on this code
homogeneity = graycoprops(graycomatrix(img), 'Homogeneity')
but can't find out.please help me with source code
0 Kommentare
Akzeptierte Antwort
KALYAN ACHARJYA
am 23 Jun. 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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Image Segmentation and Analysis 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!