正式使用opencv里的训练和检测 - opencv_createsamples、opencv_traincascade-2.4.11版本

正式使用opencv里的训练和检测 - opencv_createsamples、opencv_traincascade-2.4.11版本


一、基础知识准备

首先,opencv目前仅支持三种特征的训练检测, HAAR、LBP、HOG,选择哪个特征就去补充哪个吧。opencv的这个训练算法是基于adaboost而来的,所以需要先对adaboost进行基础知识补充啊,网上一大堆资料,同志们速度去查阅。我的资源里也有,大家去下载吧,这些我想都不是大家能直接拿来用的,我下面将直接手把手告诉大家训练怎么操作,以及要注意哪些细节。


二、关于正样本的准备

1、采集正样本图片

因为正样本最后需要大小归一化,所以我在采集样本的时候就直接把它从原图里抠出来了,方便后面缩放嘛,而不是只保存它的框个数和框位置信息(框个数、框位置信息看下一步解释),在裁剪的过程中尽量保持样本的长宽比例一致。比如我最后要归一化成20 X 20,在裁剪样本的时候,我都是20X20或者21X21、22X22等等,最大我也没有超过30X30(不超过跟我的自身用途有关,对于人脸检测这种要保证缩放不变性的样本,肯定就可以超过啦),我资源里也给出可以直接用的裁剪样本程序。

(这里我说错了,根据createsamples.cpp ,我们不需要提前进行缩放操作,它在第3步变成vec时就包含了缩放工作.如果我们是用objectMaker标记样本,程序同时生成的关于每一幅图的samplesInfo信息,直接给第三步用即可。当然,你提前缩放了也没关系,按照第2步操作即可)

2、获取正样本路径列表

在你的图片文件夹里,编写一个bat程序(get route.bat,bat是避免每次都需要去dos框输入,那里又不能复制又不能粘贴!),如下所示:








运行bat文件,就会生成如下dat文件


把这个dat文件中的所有非图片的路径都删掉,比如上图的头两行,再将bmp 替换成 bmp 1 0 0 20 20,如下:


(1代表个数,后四个分别对应 left top width height,如果我们之前不是把样本裁剪下来的,那么你的这个dat可能就长成这样1. bmp 3 1 3 24 24 26 28 25 25 60 80 26 26,1.bmp是完全的原图啊,你之前的样本就是从这张图上扣下来的)

3、获取供训练的vec文件

这里,我们得利用opencv里的一个程序叫opencv_createsamples.exe,可以把它拷贝出来。针对它的命令输入也是写成bat文件啦,因为cascade训练的时候用的是vec。如下:


运行bat,就在我们得pos文件夹里生成了如下vec文件

就此有关正样本的东西准备结束。

(vec中其实就是保存的每一个sample图,并且已经统一w、h大小了,如果你想看所有的sample,也可以通过调用opencv_createsamples.exe,使用操作,见附)


三、关于负样本的准备

这个特别简单,直接拿原始图,不需要裁剪抠图(不裁剪还能保证样本的多样性),也不需要保存框(网上说只要保证比正样本大小大哈,大家就保证吧),只要把路径保存下来。同正样本类似,步骤图如下:



至此有关负样本的也准备完成。


四、开始训练吧

这里我们用opencv_traincascade.exe(opencv_haartraining.exe的用法跟这个很相似,具体需要输入哪些参数去看opencv的源码吧,网上资料也有很多,主要是opencv_traincascade.exe比opencv_haartraining.exe包含更多的特征,功能齐全些啊),直接上图:


命令输入也直接用bat文件,请务必保证好大小写一致,不然不予识别参数。小白兔,跑起来~~~


这是程序识别到的参数,没有错把,如果你哪个字母打错了,你就会发现这些参数会跟你预设的不一样啊,所以大家一定要看清楚了~~~~

跑啊跑啊跑啊跑,如下:


这一级的强训练器达到你预设的比例以后就跑去训练下一级了,同志们那个HR比例不要设置太高,不然会需要好多样本,然后stagenum不要设置太小啊,不然到时候拿去检测速度会很慢。

等这个bat跑结束,我的xml文件生成了。如下:


其实这个训练可以中途停止的,因为下次开启时它会读取这些xml文件,接着进行上次未完成的训练。哈哈~~~~好人性化啊!

训练结束,我要到了我的cascade.xml文件,现在我要拿它去做检测了啊!呼呼~~~~


五、开始检测吧

opencv有个opencv_performance.exe程序用于检测,但是它只能用在用opencv_haartraining.exe来用的,所以我这里是针对一些列图片进行检测的,检测代码如下:

  1. #include<windows.h>
  2. #include<mmsystem.h>
  3. #include<stdio.h>
  4. #include<stdlib.h>
  5. #include"wininet.h"
  6. #include<direct.h>
  7. #include<string.h>
  8. #include<list>
  9. #pragmacomment(lib,"Wininet.lib")
  10. #include"opencv2/objdetect/objdetect.hpp"
  11. #include"opencv2/highgui/highgui.hpp"
  12. #include"opencv2/imgproc/imgproc.hpp"
  13. #include"opencv2/ml/ml.hpp"
  14. #include<iostream>
  15. #include<stdio.h>
  16. usingnamespacestd;
  17. namespacecv;
  18. StringcascadeName="./cascade.xml";//训练数据
  19. structPathElem{
  20. TCHARSrcImgPath[MAX_PATH*2];
  21. TCHARRstImgPath[MAX_PATH*2];
  22. };
  23. intFindImgs(char*pSrcImgPath,char*pRstImgPath,std::list<PathElem>&ImgList);
  24. intmain()
  25. {
  26. CascadeClassifiercascade;//创建级联分类器对象
  27. std::list<PathElem>ImgList;
  28. std::list<PathElem>::iteratorpImgListTemp;
  29. vector<Rect>rects;
  30. vector<Rect>::const_iteratorpRect;
  31. doublescale=1.;
  32. Matimage;
  33. doublet;
  34. if(!cascade.load(cascadeName))//从指定的文件目录中加载级联分类
  35. {
  36. cerr<<"ERROR:Couldnotloadclassifiercascade"<<endl;
  37. return0;
  38. }
  39. intnFlag=FindImgs("H:/SrcPic/","H:/RstPic/",ImgList);
  40. if(nFlag!=0)
  41. cout<<"ReadImageerror!Input0toexit\n";
  42. exit(0);
  43. pImgListTemp=ImgList.begin();
  44. for(intiik=1;iik<=ImgList.size();iik++,pImgListTemp++)
  45. image=imread(pImgListTemp->SrcImgPath);
  46. if(!image.empty())//读取图片数据不能为空
  47. Matgray,smallImg(cvRound(image.rows/scale),cvRound(image.cols/scale),CV_8UC1);//将图片缩小,加快检测速度
  48. cvtColor(image,gray,CV_BGR2GRAY);//因为用的是类haar特征,所以都是基于灰度图像的,这里要转换成灰度图像
  49. resize(gray,smallImg,smallImg.size(),INTER_LINEAR);//将尺寸缩小到1/scale,用线性插值
  50. equalizeHist(smallImg,smallImg);//直方图均衡
  51. //detectMultiScale函数中smallImg表示的是要检测的输入图像为smallImg,rects表示检测到的目标序列,1.1表示
  52. //每次图像尺寸减小的比例为1.1,2表示每一个目标至少要被检测到3次才算是真的目标(因为周围的像素和不同的窗口大
  53. //小都可以检测到目标),CV_HAAR_SCALE_IMAGE表示不是缩放分类器来检测,而是缩放图像,Size(30,30)为目标的
  54. //最小最大尺寸
  55. rects.clear();
  56. printf("begin...\n");
  57. t=(double)cvGetTickCount();//用来计算算法执行时间
  58. cascade.detectMultiScale(smallImg,rects,1.1,2,Size(20,20),Size(30,30));
  59. //|CV_HAAR_FIND_BIGGEST_OBJECT//|CV_HAAR_DO_ROUGH_SEARCH|CV_HAAR_SCALE_IMAGE,
  60. double)cvGetTickCount()-t;
  61. printf("detectiontime=%gms\n\n",t/((double)cvGetTickFrequency()*1000.));
  62. for(pRect=rects.begin();pRect!=rects.end();pRect++)
  63. rectangle(image,cvPoint(pRect->x,pRect->y),cvPoint(pRect->x+pRect->width,pRect->y+pRect->height),cvScalar(0,0));
  64. imwrite(pImgListTemp->RstImgPath,image);
  65. }
  66. ottom:none; border-left:3px solid rgb(108,std::list<PathElem>&ImgList)
  67. //源图片存在的目录
  68. TCHARszFileT1[MAX_PATH*2];
  69. lstrcpy(szFileT1,TEXT(pSrcImgPath));
  70. lstrcat(szFileT1,TEXT("*.*"));
  71. //结果图片存放的目录
  72. TCHARRstAddr[MAX_PATH*2];
  73. lstrcpy(RstAddr,TEXT(pRstImgPath));
  74. _mkdir(RstAddr);//创建文件
  75. WIN32_FIND_DATAwfd;
  76. HANDLEhFind=FindFirstFile(szFileT1,&wfd);
  77. PathElemstPathElemTemp;
  78. if(hFind!=INVALID_HANDLE_VALUE)
  79. do
  80. if(wfd.cFileName[0]==TEXT('.'))
  81. continue;
  82. if(wfd.dwFileAttributes&FILE_ATTRIBUTE_DIRECTORY||strcmp("Thumbs.db",TEXT(wfd.cFileName))==0)
  83. ;
  84. else
  85. lstrcpy(SrcImgPath,pSrcImgPath);
  86. lstrcat(SrcImgPath,TEXT(wfd.cFileName));
  87. lstrcpy(stPathElemTemp.SrcImgPath,SrcImgPath);
  88. TCHARAdresstemp[MAX_PATH*2];
  89. lstrcpy(Adresstemp,pRstImgPath);
  90. //lstrcat(Adresstemp,TEXT("/"));
  91. lstrcat(Adresstemp,108); list-style-type:decimal-leading-zero; color:inherit; line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important; list-style-position:outside!important"> lstrcpy(stPathElemTemp.RstImgPath,Adresstemp);
  92. ImgList.push_back(stPathElemTemp);
  93. }while(FindNextFile(hFind,&wfd));
  94. else
  95. return-1;
  96. return0;
  97. }

自己看看自己的检测结果咯。效果不好的改进样本,调整训练参数吧~~~嘎嘎


我觉得我写的够白痴,很方便大家直接拿来用。其中一些细节,大家自己琢磨吧~88



附:

1、opencv_createsamples.exe的参数

(createsamples.cpp)

以下1)~4)是按顺序判断,且有且仅有一个

1)提供imagename 和vecname时,调用以下操作
2)提供imagename、bgfilename和infoname时
与1)类似
3)提供 infoname和 vecname时,调用以下操作 (这里是我们训练需要的)

函数内容:读取当前图中所有标记的sample(x,y,w,h),并将其缩放到winwidth、winheight大小,故在这之前的人为缩放操作不需要

(可以看到,仅需要num、w、h参数)
4)仅vecname时,可以将vec里面的所有缩放后的samples都显示出来

2、opencv_haartraining.exe的参数

(haartraining.cpp)


3、opencv_performance.exe参数

(performance.cpp)


4、opencv_traincascade.exe参数说明

——traincascade.cpp

其中cascadeParams.printDefaults();——cascadeclassifier.cpp如下

stageParams.printDefaults();——boost.cpp如下

featureParams[fi]->printDefaults();——haarfeatures.cpp 如下

通用参数:

-data<cascade_dir_name>

目录名,如不存在训练程序会创建它,用于存放训练好的分类器


-vec<vec_file_name>

包含正样本的vec文件名(由opencv_createsamples程序生成)


-bg<background_file_name>

背景描述文件,也就是包含负样本文件名的那个描述文件


-numPos<number_of_positive_samples>

每级分类器训练时所用的正样本数目


-numNeg<number_of_negative_samples>

每级分类器训练时所用的负样本数目,可以大于-bg指定的图片数目


-numStages<number_of_stages>

训练的分类器的级数。


-precalcValBufSize<precalculated_vals_buffer_size_in_Mb>

缓存大小,用于存储预先计算的特征值(featurevalues),单位为MB


-precalcIdxBufSize<precalculated_idxs_buffer_size_in_Mb>

缓存大小,用于存储预先计算的特征索引(featureindices),单位为MB。内存越大,训练时间越短


-baseFormatSave

这个参数仅在使用Haar特征时有效。如果指定这个参数,那么级联分类器将以老的格式存储


级联参数:

-stageType<BOOST(default)>

级别(stage)参数。目前只支持将BOOST分类器作为级别的类型


-featureType<{HAAR(default),LBP}>

特征的类型:HAAR-Haar特征;LBP-局部纹理模式特征


-w<sampleWidth>

-h<sampleHeight>

训练样本的尺寸(单位为像素)。必须跟训练样本创建(使用opencv_createsamples程序创建)时的尺寸保持一致


Boosted分类器参数:

-bt<{DAB,RAB,LB,GAB(default)}>

Boosted分类器的类型:DAB-DiscreteAdaBoost,RAB-RealAdaBoost,LB-LogitBoost,GAB-GentleAdaBoost


-minHitRate<min_hit_rate>

分类器的每一级希望得到的最小检测率(正样本被判成正样本的比例)。总的检测率大约为min_hit_rate^number_of_stages。可以设很高,如0.999


-maxFalseAlarmRate<max_false_alarm_rate>

分类器的每一级希望得到的最大误检率(负样本被判成正样本的比例)。总的误检率大约为max_false_alarm_rate^number_of_stages。可以设较低,如0.5


-weightTrimRate<weight_trim_rate>

Specifieswhethertrimmingshouldbeusedanditsweight.一个还不错的数值是0.95


-maxDepth<max_depth_of_weak_tree>

弱分类器树最大的深度。一个还不错的数值是1,是二叉树(stumps


-maxWeakCount<max_weak_tree_count>

每一级中的弱分类器的最大数目。Theboostedclassifier(stage)willhavesomanyweaktrees(<=maxWeakCount),asneededtoachievethegiven-maxFalseAlarmRate


Haar特征参数:

-mode<BASIC(default)|CORE|ALL>

选择训练过程中使用的Haar特征的类型。BASIC只使用右上特征,ALL使用所有右上特征和45度旋转特征


5、detectMultiScale函数参数说明

该函数会在输入图像的不同尺度中检测目标:

image -输入的灰度图像,

objects-被检测到的目标矩形框向量组,

scaleFactor-为每一个图像尺度中的尺度参数,默认值为1.1

minNeighbors-为每一个级联矩形应该保留的邻近个数,默认为3,表示至少有3次检测到目标,才认为是目标

flags-CV_HAAR_DO_CANNY_PRUNING,利用Canny边缘检测器来排除一些边缘很少或者很多的图像区域;

CV_HAAR_SCALE_IMAGE,按比例正常检测;

CV_HAAR_FIND_BIGGEST_OBJECT,只检测最大的物体;

CV_HAAR_DO_ROUGH_SEARCH,只做粗略检测。默认值是0

minSize和maxSize-用来限制得到的目标区域的范围(先找maxsize,再用1.1参数缩小,直到小于minSize终止检测)


6、opencv关于Haar介绍

(haarfeatures.cpp ——opencv3.0)

Detailed Description

Haar Feature-based Cascade Classifier for Object Detection

The object detector described below has been initially proposed by Paul Viola[pdf]and improved by Rainer Lienhart[pdf].

First,a classifier (namely acascade of boosted classifiers working with haar-like features) is trained with a few hundred sample views of a particular object (i.e.,a face or a car),called positive examples,that are scaled to the same size (say,20x20),and negative examples - arbitrary images of the same size.

After a classifier is trained,it can be applied to a region of interest (of the same size as used during the training) in an input image. The classifier outputs a "1" if the region is likely to show the object (i.e.,face/car),and "0" otherwise. To search for the object in the whole image one can move the search window across the image and check every location using the classifier. The classifier is designed so that it can be easily "resized" in order to be able to find the objects of interest at different sizes,which is more efficient than resizing the image itself. So,to find an object of an unkNown size in the image the scan procedure should be done several times at different scales.

The word "cascade" in the classifier name means that the resultant classifier consists of several simpler classifiers (stages) that are applied subsequently to a region of interest until at some stage the candidate is rejected or all the stages are passed. The word "boosted" means that the classifiers at every stage of the cascade are complex themselves and they are built out of basic classifiers using one of four different boosting techniques (weighted voting). Currently discrete Adaboost,Real Adaboost,Gentle Adaboost and Logitboost are supported. The basic classifiers are decision-tree classifiers with at least 2 leaves. Haar-like features are the input to the basic classifiers,and are calculated as described below. The current algorithm uses the following Haar-like features:

image

The feature used in a particular classifier is specified by its shape (1a,2b etc.),position within the region of interest and the scale (this scale is not the same as the scale used at the detection stage,though these two scales are multiplied). For example,in the case of the third line feature (2c) the response is calculated as the difference between the sum of image pixels under the rectangle covering the whole feature (including the two white stripes and the black stripe in the middle) and the sum of the image pixels under the black stripe multiplied by 3 in order to compensate for the differences in the size of areas. The sums of pixel values over a rectangular regions are calculated rapidly using integral images (see below and the integral description).

To see the object detector at work,have a look at the facedetect demo:https://github.com/Itseez/opencv/tree/master/samples/cpp/dbt_face_detection.cpp

The following reference is for the detection part only. There is a separate application called opencv_traincascade that can train a cascade of boosted classifiers from a set of samples.

Note

In the new C++ interface it is also possible to use LBP (local binary pattern) features in addition to Haar-like features. .. [Viola01] Paul Viola and Michael J. Jones. Rapid Object Detection using a Boosted Cascade of Simple Features. IEEE CVPR,2001. The paper is available online athttps://www.cs.cmu.edu/~efros/courses/LBMV07/Papers/viola-cvpr-01.pdf(上述有提到)


7、opencv关于boost

(boost.cpp——opencv3.0)

Boosting

A common machine learning task is supervised learning. In supervised learning,the goal is to learn the functional relationship F:y=F(x) between the input x and the output y . Predicting the qualitative output is calledclassification,while predicting the quantitative output is calledregression.

Boosting is a powerful learning concept that provides a solution to the supervised classification learning task. It combines the performance of many "weak" classifiers to produce a powerful committee[125]. A weak classifier is only required to be better than chance,and thus can be very simple and computationally inexpensive. However,many of them smartly combine results to a strong classifier that often outperforms most "monolithic" strong classifiers such as SVMs and Neural Networks.

Decision trees are the most popular weak classifiers used in boosting schemes. Often the simplest decision trees with only a single split node per tree (called stumps ) are sufficient.

The boosted model is based on N training examples (xi,yi)1N with xiRK and yi1,+1 . xi is a K -component vector. Each component encodes a feature relevant to the learning task at hand. The desired two-class output is encoded as -1 and +1.

Different variants of boosting are kNown as discrete Adaboost,Real AdaBoost,LogitBoost,and Gentle AdaBoost[49]. All of them are very similar in their overall structure. Therefore,this chapter focuses only on the standard two-class discrete AdaBoost algorithm,outlined below. Initially the same weight is assigned to each sample (step 2). Then,a weak classifier fm(x) is trained on the weighted training data (step 3a). Its weighted training error and scaling factor cm is computed (step 3b). The weights are increased for training samples that have been misclassified (step 3c). All weights are then normalized,and the process of finding the next weak classifier continues for another M -1 times. The final classifier F(x) is the sign of the weighted sum over the individual weak classifiers (step 4).

Two-class discrete AdaBoost Algorithm

  • Set N examples (xi,yi)1N with xiRK,yi1,+1 .
  • Assign weights as wi=1/N,i=1,...,N .
  • Repeat for m=1,2,...,M :
    • Fit the classifier fm(x)1,1 ,using weights wi on the training data.
    • Compute errm=Ew[1(yfm(x))],cm=log((1errm)/errm) .
    • Set wiwiexp[cm1(yifm(xi))],i=1,2,...,N, and renormalize so that Σiwi=1 .
  • Classify new samplesxusing the formula: sign(Σm=1Mcmfm(x)) .
Note
Similar to the classical boosting methods,the current implementation supports two-class classifiers only. For M > 2 classes,there is the AdaBoost.MHalgorithm (described in [49]) that reduces the problem to the two-class problem,yet with a much larger training set.

To reduce computation time for boosted models without substantially losing accuracy,the influence trimming technique can be employed. As the training algorithm proceeds and the number of trees in the ensemble is increased,a larger number of the training samples are classified correctly and with increasing confidence,thereby those samples receive smaller weights on the subsequent iterations. Examples with a very low relative weight have a small impact on the weak classifier training. Thus,such examples may be excluded during the weak classifier training without having much effect on the induced classifier. This process is controlled with the weight_trim_rate parameter. Only examples with the summary fraction weight_trim_rate of the total weight mass are used in the weak classifier training. Note that the weights foralltraining examples are recomputed at each training iteration. Examples deleted at a particular iteration may be used again for learning some of the weak classifiers further[49]

See also
cv::ml::Boost

Prediction with Boost

StatModel::predict(samples,results,flags) should be used. Pass flags=StatModel::RAW_OUTPUT to get the raw sum from Boost classifier.

8、关于训练过程打印信息的解释

1)POS count : consumed n1 : n2

每次都调用updateTrainingSet( requiredLeafFarate,tempLeafFarate );函数

  1. boolCvCascadeClassifier::updateTrainingSet(doubleminimumAcceptanceRatio,87); background-color:inherit; font-weight:bold">double&acceptanceRatio)
  2. {
  3. int64posConsumed=0,negConsumed=0;
  4. imgReader.restart();
  5. intposCount=fillPassedSamples(0,numPos,153); background-color:inherit; font-weight:bold">true,posConsumed);//Consumed消耗
  6. if(!posCount)
  7. returnfalse;
  8. cout<<"POScount:consumed"<<posCount<<":"<<(int)posConsumed<<endl;//这就是打印信息,我的理解是这个stage判成正样本数和正样本数
  9. intproNumNeg=cvRound((((double)numNeg)*((double)posCount))/numPos);//applyonlyafractionofnegativesamples.doubleisrequiredsinceoverflowispossible
  10. intnegCount=fillPassedSamples(posCount,proNumNeg,153); background-color:inherit; font-weight:bold">false,minimumAcceptanceRatio,negConsumed);
  11. if(!negCount)
  12. curNumSamples=posCount+negCount;
  13. acceptanceRatio=negConsumed==0?0:((double)negCount/(double)(int64)negConsumed);
  14. cout<<"NEGcount:acceptanceRatio"<<negCount<<":"<<acceptanceRatio<<endl;//打印信息,我的理解是
  15. true;
  16. }



转载:http://www.jb51.cc/article/p-qpehxfki-wd.html

相关文章

php输出xml格式字符串
J2ME Mobile 3D入门教程系列文章之一
XML轻松学习手册
XML入门的常见问题(一)
XML入门的常见问题(三)
XML轻松学习手册(2)XML概念