How can i find out homogeneity of an image?

조회 수: 14 (최근 30일)
Syed Zenith Rhyhan
Syed Zenith Rhyhan 2019년 6월 23일
답변: KALYAN ACHARJYA 2019년 6월 23일
I try on this code
homogeneity = graycoprops(graycomatrix(img), 'Homogeneity')
but can't find out.please help me with source code

채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 6월 23일
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.
Read here detail documentation

추가 답변 (0개)

제품


릴리스

R2014a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by