File size: 1,677 Bytes
7fc5a59 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | #ifndef OPENPOSE_POSE_ENUM_CLASSES_HPP
#define OPENPOSE_POSE_ENUM_CLASSES_HPP
namespace op
{
/**
* An enum class in which all the possible type of pose estimation models are included.
*/
enum class PoseModel : unsigned char
{
/**
* COCO + 6 foot keypoints + neck + lower abs model, with 25+1 components (see poseParameters.hpp for details).
*/
BODY_25 = 0,
COCO_18, /**< COCO model + neck, with 18+1 components (see poseParameters.hpp for details). */
MPI_15, /**< MPI model, with 15+1 components (see poseParameters.hpp for details). */
MPI_15_4, /**< Variation of the MPI model, reduced number of CNN stages to 4: faster but less accurate.*/
BODY_19, /**< Experimental. Do not use. */
BODY_19_X2, /**< Experimental. Do not use. */
BODY_19N, /**< Experimental. Do not use. */
BODY_25E, /**< Experimental. Do not use. */
CAR_12, /**< Experimental. Do not use. */
BODY_25D, /**< Experimental. Do not use. */
BODY_23, /**< Experimental. Do not use. */
CAR_22, /**< Experimental. Do not use. */
BODY_19E, /**< Experimental. Do not use. */
BODY_25B, /**< Experimental. Do not use. */
BODY_135, /**< Experimental. Do not use. */
Size,
};
enum class PoseProperty : unsigned char
{
NMSThreshold = 0,
ConnectInterMinAboveThreshold,
ConnectInterThreshold,
ConnectMinSubsetCnt,
ConnectMinSubsetScore,
Size,
};
}
#endif // OPENPOSE_POSE_ENUM_CLASSES_HPP
|