Update keypointdetection result docs

This commit is contained in:
felixhjh
2022-11-29 08:26:27 +00:00
parent e919aca526
commit f91a6126ee
4 changed files with 11 additions and 13 deletions

View File

@@ -49,10 +49,9 @@ API: `fastdeploy.vision.FaceDetectionResult`, The FaceDetectionResult will retur
The KeyPointDetectionResult code is defined in `fastdeploy/vision/common/result.h` and is used to indicate the coordinates and confidence of each keypoint of the target behavior in the image.
API:`fastdeploy.vision.KeyPointDetectionResult`, The KeyPointDetectionResult will return:
- **keypoints**(list of list(float)): Member variable, representing the key point coordinates of the identified target behavior. `keypoints.size()= N * J * 2`
- **keypoints**(list of list(float)): Member variable, representing the key point coordinates of the identified target behavior. `keypoints.size()= N * J`
- `N`: number of objects in the picture
- `J`: num_jointsnumber of keypoints for a target
- `3`: 坐标信息[x, y]
- **scores**(list of float): Member variable, representing the confidence of the keypoint coordinates of the recognized target behavior. `scores.size()= N * J`
- `N`: number of objects in the picture
- `J`: num_jointsnumber of keypoints for a target