Face Engine SDK 5.26.0
A face detection, recognition and tracking engine.
Loading...
Searching...
No Matches
OrientationType.h
1#pragma once
2
3#include <cstdint>
4
5namespace fsdk {
6
10 enum OrientationType : uint32_t {
12 OT_LEFT = 1,
14 OT_RIGHT = 3
15 };
16} // namespace fsdk
SDK namespace.
Definition IAGSEstimator.h:8
OrientationType
Estimation of image orientation.
Definition OrientationType.h:10
@ OT_LEFT
Image is turned left by 90 deg.
Definition OrientationType.h:12
@ OT_NORMAL
Normal orientation of image.
Definition OrientationType.h:11
@ OT_RIGHT
Image is turned right by 90 deg.
Definition OrientationType.h:14
@ OT_UPSIDE_DOWN
Image is flipped upsidedown (turned by 180 deg)
Definition OrientationType.h:13