public DetectMultiScale ( OpenCvSharp.Mat image, double scaleFactor = 1.1, int minNeighbors = 3, HaarDetectionType flags, Size minSize = null, Size maxSize = null ) : Rect[] | ||
image | OpenCvSharp.Mat | Matrix of the type CV_8U containing an image where objects are detected. |
scaleFactor | double | Parameter specifying how much the image size is reduced at each image scale. |
minNeighbors | int | Parameter specifying how many neighbors each candidate rectangle should have to retain it. |
flags | HaarDetectionType | Parameter with the same meaning for an old cascade as in the function cvHaarDetectObjects. /// It is not used for a new cascade. |
minSize | Size | Minimum possible object size. Objects smaller than that are ignored. |
maxSize | Size | Maximum possible object size. Objects larger than that are ignored. |
리턴 | Rect[] |