我必须在 Python 中找到图像的基于纹理的特征,例如相关性、能量、同质性和对比度。我正在使用 python-opencv 执行其他操作,因为 python-opencv 将图像作为 numpy 数组返回。但是我没有找到任何好的资源来使用 opencv 或 numpy 计算 GLCM。另外我必须提取特征d=1
,angle=[0,45,135,90]
然后在 svm 中使用这个特征。
问问题
8830 次
1 回答
5
您必须安装以下库scipy
,numpy
并且skimage
.
skimage
有一个名为的模块skimage.feature
,其中包括
skimage.feature.greycomatrix
和skimage.feature.greycoprops
。使用这些我们可以计算greycoimage
forndarray
uint8
和 greco 比例指令
于 2013-10-24T16:33:19.653 回答