在我的程序中,我正在检测人脸,我的代码运行良好,但我担心这段代码,因为眼睛检测“cascade.detectMultiScale()”有很多参数,而对于人脸检测,我使用这几个参数,以及它是如何检测人脸的,我们是否没有在“cascade.detectMultiScale()”中初始化检测对象的大小
cascade.detectMultiScale(gray, faces, 1.2, 2);
for (int i = 0; i < faces.size(); i++)
{
Rect r = faces[i];
rectangle(src, Point(r.x, r.y), Point(r.x + r.width, r.y + r.height), CV_RGB(0,0,255));
}