Face Engine SDK  5.17.0
A face detection, recognition and tracking engine.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
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
Turn image to the left by 90 deg.
Definition: RotationType.h:12
Flip image upside down (turn by 180 deg)
Definition: RotationType.h:13
RotationType
Image rotation type.
Definition: RotationType.h:10
Turn image to the right by 90 deg.
Definition: RotationType.h:14
Leave image as it is.
Definition: RotationType.h:11