mirror of
https://github.com/bububa/openvision.git
synced 2025-10-30 00:11:45 +08:00
19 lines
273 B
C++
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_
|