Recommended values for OpenCV detectMultiScale() parameters

C++OpencvCascade Classifier

C++ Problem Overview


What are the recommended parameters for CascadeClassifier::detectMultiScale() and depending on which factors I should change default parameters?

void CascadeClassifier::detectMultiScale(
    const Mat& image, 
    vector<Rect>& objects, 
    double scaleFactor=1.1,
    int minNeighbors=3, 
    int flags=0, 
    Size minSize=Size(),
    Size maxSize=Size() )

C++ Solutions


Solution 1 - C++

Amongst these parameters, you need to pay more attention to four of them:

  • scaleFactor – Parameter specifying how much the image size is reduced at each image scale.

    Basically the scale factor is used to create your scale pyramid. More explanation can be found here. In short, as described here, your model has a fixed size defined during training, which is visible in the xml. This means that this size of face is detected in the image if present. However, by rescaling the input image, you can resize a larger face to a smaller one, making it detectable by the algorithm.

1.05 is a good possible value for this, which means you use a small step for resizing, i.e. reduce size by 5%, you increase the chance of a matching size with the model for detection is found. This also means that the algorithm works slower since it is more thorough. You may increase it to as much as 1.4 for faster detection, with the risk of missing some faces altogether.

  • minNeighbors – Parameter specifying how many neighbors each candidate rectangle should have to retain it.

    This parameter will affect the quality of the detected faces. Higher value results in less detections but with higher quality. 3~6 is a good value for it.

  • minSize – Minimum possible object size. Objects smaller than that are ignored.

    This parameter determine how small size you want to detect. You decide it! Usually, [30, 30] is a good start for face detection.

  • maxSize – Maximum possible object size. Objects bigger than this are ignored.

    This parameter determine how big size you want to detect. Again, you decide it! Usually, you don't need to set it manually, the default value assumes you want to detect without an upper limit on the size of the face.

Solution 2 - C++

If you have a good CPU and RAM performance or more you can set scaleFactor=1 minNeighbors=3

if you're working in an embedded system like in raspberry i recommand to choose smth like scaleFactor= 2, (Higher values means less accuracy) minNeighbors = 1, (Higher values means less accuracy but more reliability) the algorithm will run much faster otherwise it will freeze if the CPU performance and RAM are not enough .

hope it helps

Solution 3 - C++

cl_int err;
	cl_uint numPlatforms;

	err = clGetPlatformIDs(0, NULL, &numPlatforms);
	if (CL_SUCCESS == err)
	printf("\nDetected OpenCL platforms: %d", numPlatforms);
	else
	printf("\nError calling clGetPlatformIDs. Error code: %d", err);

	string str ="haarcascade_frontalface_alt2.xml";
	ocl::OclCascadeClassifier fd;
	fd.load(str);
	ocl::oclMat frame, frameGray;
	Mat frameCpu;
	

	CvVideoCapture vcap = openVideo("0");
	vcap.set(CV_CAP_PROP_FRAME_WIDTH,320);
	vcap.set(CV_CAP_PROP_FRAME_HEIGHT,240);

 	static const cv::Size maxSize;

	for(;;){
	//  // processing loop
		vector<Rect> faces;
	vcap >> frameCpu;
	frame = frameCpu;
	ocl::cvtColor(frame, frameGray, CV_BGR2GRAY);
	//ocl::equalizeHist(frameGray, frameGray);
	//Mat mm(frameGray);
	//cvWaitKey(100);

	fd.detectMultiScale(frameGray,faces,1.05,3,0|CV_HAAR_FIND_BIGGEST_OBJECT ,minSize,maxSize);
	

	  for(int	i=0; i<  faces.size() ; i++)
	   {
	     if(faces.size())
		 //circle(img, Point(palm[i].x+ palm[i].width/2,palm[i].y+palm[i].height/2),palm[i].width,Scalar(255,0,0), 2,8 );		
			 cv::rectangle(frameCpu, faces[i],Scalar(255,0,0), 2,8 );		
	   }

	  imshow("fsfs",frameCpu);

	cvWaitKey(1);

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestiontorayeffView Question on Stackoverflow
Solution 1 - C++herohuyongtaoView Answer on Stackoverflow
Solution 2 - C++The BeastView Answer on Stackoverflow
Solution 3 - C++Milind MoreyView Answer on Stackoverflow