cvHaarDetectObjectsがどのように機能するかを学習しようとしています...それがどのように機能するかを視覚化できませんでした...積分画像がどのように計算され、顔を見つけるか...
顔の領域に長方形を配置します...この領域をどのように見つけますか?
if (faces)
{
for(int i = 0; i < faces->total; ++i)
{
CvPoint point1, point2;
CvRect* rectangle = (CvRect*)cvGetSeqElem(faces, i);
point1.x = rectangle->x;
point2.x = (rectangle->x + rectangle->width);
point1.y = rectangle->y;
point2.y = (rectangle->y + rectangle->height);
cvRectangle(frame, point1, point2, CV_RGB(255,0,0));...