资 源 简 介
#include "stdafx.h"#include #include "windows.h"#include "fstream"#include using namespace std;using namespace cv;//为了方便,这一部分是利用提取HOG特征,SVM对图片进行分类。int _tmain(int argc, _TCHAR* argv[]){ vector img_path;////输入文件名变量 vector img_cat;//category类型 int nLine=0; //定义行 string buf; ifstream svm_data("C:\Users\dell\Desktop\CharReg\CharReg\hb1.txt"); //训练样本图片的路径都写在这个txt文件中使用bat批处理文件可以得到这个txt文件. unsigned long n; while (svm_data) //将训练样本文件依次读取进来 { if (getline(svm_data,buf))