摘要: // mystring.h -- class definition#include <iostream>#include<string>using namespace std;class String{private: char * str; // pointer to string int len; // length of string static int num_strings; // number of objects static const int CINLIM = 80; // cin input limitpublic: // constructors 阅读全文
posted @ 2011-05-10 22:16 hailong 阅读(2183) 评论(0) 推荐(0) 编辑
摘要: %**************************************************************************% 图像检索——纹理特征%基于共生矩阵纹理特征提取,d=1,θ=0°,45°,90°,135°共四个矩阵%所用图像灰度级均为256%参考《基于颜色空间和纹理特征的图像检索》%function : T=Texture(Image) %Image : 输入图像数据%T : 返回八维纹理特征行向量%********************************************************** 阅读全文
posted @ 2011-05-10 10:04 hailong 阅读(8634) 评论(1) 推荐(0) 编辑