mirror of
https://github.com/Laex/Delphi-OpenCV.git
synced 2024-11-15 15:55:53 +01:00
28 lines
422 B
PHP
28 lines
422 B
PHP
|
// Created uCompressHaar.exe
|
||
|
// Haar cascade types
|
||
|
TocvHaarCascadeType =
|
||
|
(
|
||
|
hcEye,
|
||
|
hcEyeTreeEyeglasses,
|
||
|
hcFrontalfaceAlt,
|
||
|
hcFrontalfaceAlt2,
|
||
|
hcFrontalfaceAltTree,
|
||
|
hcFrontalfaceDefault,
|
||
|
hcFullbody,
|
||
|
hcLefteye2splits,
|
||
|
hcLowerbody,
|
||
|
hcMcsEyepairBig,
|
||
|
hcMcsEyepairSmall,
|
||
|
hcMcsLeftear,
|
||
|
hcMcsLefteye,
|
||
|
hcMcsMouth,
|
||
|
hcMcsNose,
|
||
|
hcMcsRightear,
|
||
|
hcMcsRighteye,
|
||
|
hcMcsUpperbody,
|
||
|
hcProfileface,
|
||
|
hcRighteye2splits,
|
||
|
hcSmile,
|
||
|
hcUpperbody
|
||
|
);
|