Face Engine SDK  5.14.0
A face detection, recognition and tracking engine.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
OrientationType.h
1 #pragma once
2 
3 #include <cstdint>
4 
5 namespace fsdk {
6 
10  enum OrientationType : uint32_t {
11  OT_NORMAL = 0,
12  OT_LEFT = 1,
14  OT_RIGHT = 3
15  };
16 }
Image is turned left by 90 deg.
Definition: OrientationType.h:12
OrientationType
Estimation of image orientation.
Definition: OrientationType.h:10
Normal orientation of image.
Definition: OrientationType.h:11
Image is turned right by 90 deg.
Definition: OrientationType.h:14
Image is flipped upsidedown (turned by 180 deg)
Definition: OrientationType.h:13