フィルターのクリア

Hi,I'm doing my project about image processing, using the co-occurrence matrix but I don't know the algorithm of the co-occurrence(glcm) matrix can any one help me to get this algorithm and to get results like this. thank you a lot

3 ビュー (過去 30 日間)

回答 (2 件)

Walter Roberson
Walter Roberson 2016 年 4 月 26 日

Image Analyst
Image Analyst 2016 年 4 月 27 日
It basically tells you how often each gray level occurs next to each of the other gray levels.
  8 件のコメント
rouh 238
rouh 238 2016 年 4 月 28 日
編集済み: Walter Roberson 2016 年 4 月 28 日
I'm sorry it's not this formula, this is mine :
valeur=sum(abs((data{K})- t1));
rouh 238
rouh 238 2016 年 4 月 28 日
編集済み: Walter Roberson 2016 年 4 月 28 日
(storedStructure.t): it's the composite where we find the glcm of the images of the data base
for k=0:999
a=imread(sprintf('image\\%d.jpg',k));
I1 = rgb2gray(a);
t=glcm(I1);
save(sprintf('img\\texture\\%d.mat',k),'t');
end

サインインしてコメントする。

Community Treasure Hunt

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

Start Hunting!

Translated by