OpenPose  1.7.0
The first real-time multi-person system to jointly detect human body, hand, facial, and foot keypoints
enumClasses.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_GPU_ENUM_CLASSES_HPP
2 #define OPENPOSE_GPU_ENUM_CLASSES_HPP
3 
4 namespace op
5 {
6  enum class GpuMode : unsigned char
7  {
8  Cuda = 0,
9  OpenCL = 1,
10  NoGpu = 2,
11  Size,
12  };
13 }
14 
15 #endif // OPENPOSE_GPU_ENUM_CLASSES_HPP
GpuMode
Definition: enumClasses.hpp:7