今天要完成haar特征的鼻子分类器的不同参数设置,在ARM11上运行的性能测试。最近情绪不稳,可能有不太对的地方,仅供参考吧。
一、opencv 的haar分类器
noses = cvHaarDetectObjects(
pGray, /* the source image, with the estimated location defined */
cascade_n, /* the eye classifier */
noseStorage, /* memory buffer */
1.5,3, CV_HAAR_DO_CANNY_PRUNING, /* tune for your app */
cvSize(36,30), /* minimum detection scale */
cvSize(48,45)
);