Image processing GLCM gray level cooccurance matrix
1 回表示 (過去 30 日間)
古いコメントを表示
In function graycomatrix,the output is always 8x8 matrix,i am not getting why its 8x8 ,can anybody help me out
1 件のコメント
aliah aljohani
2017 年 9 月 22 日
hi when i use this code I = imread('circuit.tif'); glcm = graycomatrix(I,'Offset',[2 0])
i get this error Error in graycomatrix (line 167) [I, Offset, NL, GL, makeSymmetric] = ParseInputs(varargin{:});
Error in Untitled56 (line 2) GLCM = graycomatrix(I,'Offset',[2 0;0 2]); can help me and thank you
回答 (2 件)
Youssef Khmou
2013 年 3 月 5 日
hi,
We already discussed that topic , so as to avoid redundancy take a quick look at this topic you will find the answer : http://www.mathworks.com/matlabcentral/answers/64179-what-is-meant-by-glcm-mean-average
0 件のコメント
Teja Muppirala
2013 年 3 月 6 日
It's just the default setting. You can change the size by using the 'NumLevels' parameter.
For example,
I = imread('pout.tif');
G = graycomatrix(I,'NumLevels', 64);
imagesc(G)
See the help:
>> help graycomatrix
...
...
...
'NumLevels' An integer specifying the number of gray levels to use
when scaling the grayscale values in I. For example,
if 'NumLevels' is 8, graycomatrix scales the values in
I so they are integers between 1 and 8. The number of
gray levels determines the size of the gray-level
co-occurrence matrix (GLCM).
'NumLevels' must be an integer. 'NumLevels' must be 2
if I is logical.
Default: 8 for numeric
2 for logical
...
...
...
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!