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