| | #ifndef OPENPOSE_CORE_ENUM_CLASSES_HPP |
| | #define OPENPOSE_CORE_ENUM_CLASSES_HPP |
| |
|
| | namespace op |
| | { |
| | enum class ScaleMode : unsigned char |
| | { |
| | InputResolution, |
| | NetOutputResolution, |
| | OutputResolution, |
| | ZeroToOne, |
| | ZeroToOneFixedAspect, |
| | PlusMinusOne, |
| | PlusMinusOneFixedAspect, |
| | UnsignedChar, |
| | NoScale, |
| | }; |
| |
|
| | enum class HeatMapType : unsigned char |
| | { |
| | Parts, |
| | Background, |
| | PAFs, |
| | }; |
| |
|
| | enum class RenderMode : unsigned char |
| | { |
| | None, |
| | Auto, |
| | Cpu, |
| | Gpu, |
| | }; |
| |
|
| | enum class ElementToRender : unsigned char |
| | { |
| | Skeleton, |
| | Background, |
| | AddKeypoints, |
| | AddPAFs, |
| | }; |
| | } |
| |
|
| | #endif |
| |
|