
灰度共生矩阵的实现及其四种主要特征提取函数
5星
- 浏览量: 0
- 大小:None
- 文件类型:TXT
简介:
本文介绍了灰度共生矩阵的基本概念及其实现方法,并深入探讨了其四个主要特征提取函数的应用与原理。
I = imread(cameraman.tif);
imshow(I)
offsets = [0 1; -1 1;-1 0;-1 -1];
[glcms,SI] = graycomatrix(I,Offset,offsets);
imshow(rescale(SI))
whos
I = imread(cameraman.tif);
imshow(I)
glcm = graycomatrix(I,Offset,[2 0])
I = [ 1 1 5 6 8 8; 2 3 5 7 0 2; 0 2 3 5 6 7]
[glcm,SI] = graycomatrix(I)
全部评论 (0)
还没有任何评论哟~


