摘要: Texture Features: Texture contains importantinformation in image classification, as it represents the contentof many real-world images. Textures are characteristic intensity(or color) variations that typically originate from roughness ofobject surfaces (Davies, 2008). As a powerful source ofinformat 阅读全文
posted @ 2011-11-28 19:21 hailong 阅读(335) 评论(0) 推荐(0) 编辑
摘要: #include "cv.h"#include "highgui.h"int main(){ //载入图像 IplImage* pimg= cvLoadImage("D:\\baboon.jpg",1); if (!pimg) { return -1; } //显示图像 cvNamedWindow("src",1);//创建窗口 cvShowImage("src",pimg);//显示图像 cvWaitKey(0);//等待按键 cvDestroyWindow("src"); 阅读全文
posted @ 2011-11-28 19:09 hailong 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 这个真的比较难,经过看论文,他提到一直方法是提取外接矩形,外接矩形外面的像素=0;按照这个思路,我计算了相关GLCM纹理,貌似还行吧! 阅读全文
posted @ 2011-11-28 17:05 hailong 阅读(393) 评论(0) 推荐(0) 编辑