What does this means ?
Ältere Kommentare anzeigen
Dear all,
I picked up a window of 5X5 from a given image im1=im(1:5,1:5)
ans =
41 40 38 38 37
42 40 38 37 35
43 41 38 37 34
43 41 37 35 33
42 40 36 33 31
then I used graycomatrix to calculate the glcm matrix as following: glcm=graycomatrix(im1) glcm =
0 0 0 0 0 0 0 0
1 19 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
My questions are: why the result matrix is 8*8 ? how can we get the number of gray levels of an image ? How can i interpret the values 1 and 19 in the glcm matrix ?
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Texture Analysis finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!