Face Engine SDK  5.21.0
A face detection, recognition and tracking engine.
RotationType.h
1 #pragma once
2 
3 #include <cstdint>
4 
5 namespace fsdk {
6 
10  enum RotationType : uint32_t {
11  RT_NONE = 0,
12  RT_LEFT = 1,
14  RT_RIGHT = 3
15  };
16 } // namespace fsdk
fsdk::RT_LEFT
@ RT_LEFT
Turn image to the left by 90 deg.
Definition: RotationType.h:12
fsdk
SDK namespace.
Definition: IAGSEstimator.h:8
fsdk::RT_RIGHT
@ RT_RIGHT
Turn image to the right by 90 deg.
Definition: RotationType.h:14
fsdk::RT_UPSIDE_DOWN
@ RT_UPSIDE_DOWN
Flip image upside down (turn by 180 deg)
Definition: RotationType.h:13
fsdk::RT_NONE
@ RT_NONE
Leave image as it is.
Definition: RotationType.h:11
fsdk::RotationType
RotationType
Image rotation type.
Definition: RotationType.h:10