Click or drag to resize

HaarDetectionType Fields

http://www.emgu.com

The HaarDetectionType type exposes the following members.

Fields
  NameDescription
Public fieldStatic memberDefault
The default type where no optimization is done.
Public fieldStatic memberDoCannyPruning
If it is set, the function uses Canny edge detector to reject some image regions that contain too few or too much edges and thus can not contain the searched object. The particular threshold values are tuned for face detection and in this case the pruning speeds up the processing
Public fieldStatic memberDoRoughSearch
It should be used only when CV_HAAR_FIND_BIGGEST_OBJECT is set and min_neighbors > 0. If the flag is set, the function does not look for candidates of a smaller size as soon as it has found the object (with enough neighbor candidates) at the current scale. Typically, when min_neighbors is fixed, the mode yields less accurate (a bit larger) object rectangle than the regular single-object mode (flags=CV_HAAR_FIND_BIGGEST_OBJECT), but it is much faster, up to an order of magnitude. A greater value of min_neighbors may be specified to improve the accuracy
Public fieldStatic memberFindBiggestObject
If it is set, the function finds the largest object (if any) in the image. That is, the output sequence will contain one (or zero) element(s)
Public fieldStatic memberScaleImage
For each scale factor used the function will downscale the image rather than "zoom" the feature coordinates in the classifier cascade. Currently, the option can only be used alone, i.e. the flag can not be set together with the others
Public fieldvalue__
Top
See Also