Enum VLHaarDetectObjects.TVLHaarScaleMode
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: VisionLabPkg
Unit: VLHaarDetectObjects
Contents |
Syntax
Delphi:
type TVLHaarScaleMode = (hsmZoom, hsmDownsample);
C++ Builder:
enum TVLHaarScaleMode {hsmZoom, hsmDownsample};
Visual C++ (MFC):
enum CTVLHaarScaleMode {hsmZoom, hsmDownsample};
Summary
Haar scale mode.
Description
Defines Haar scale mode enumeration.
Values
hsmZoom | For each scale factor used the function will zoom the feature coordinates in the classifier cascade. |
hsmDownsample | 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. |