Files
openvision/src/pose/common/common.hpp
2021-10-28 18:53:32 +08:00

19 lines
273 B
C++

#ifndef _POSE_COMMON_H_
#define _POSE_COMMON_H_
#include "../../common/common.h"
namespace ovpose {
struct PoseKeypoint {
ov::Point2f p;
float prob;
};
struct PoseROI {
ov::Rect rect;
unsigned char *data;
float score;
};
}
#endif // !_POSE_COMMON_H_