| 123456789101112131415161718192021 |
- class FaceEnvironment {
- static const VALUE_BRIGHTNESS = 82.0;
- static const VALUE_MAX_BRIGHTNESS = 200.0;
- static const VALUE_BLURNESS = 0.3;
- static const VALUE_OCCLUSION = 0.5;
- static const VALUE_HEAD_PITCH = 8;
- static const VALUE_HEAD_YAW = 8;
- static const VALUE_HEAD_ROLL = 8;
- static const VALUE_CROP_HEIGHT = 640;
- static const VALUE_CROP_WIDTH = 480;
- static const VALUE_MIN_FACE_SIZE = 200;
- static const VALUE_NOT_FACE_THRESHOLD = 0.6;
- static const VALUE_IS_CHECK_QUALITY = true;
- static const VALUE_DECODE_THREAD_NUM = 2;
- static const VALUE_LIVENESS_DEFAULT_RANDOM_COUNT = 3;
- static const VALUE_MAX_CROP_IMAGE_NUM = 1;
- static const VALUE_CLOSE_EYES = 0.7;
- static const VALUE_CACHE_IMAGE_NUM = 3;
- static const VALUE_SCALE = 1.0;
- static const VALUE_SEC_TYPE = 0;
- }
|