How to use dataset "posetrack18" for 2D human pose detection #1878
-
According to demo, I can use dataset "coco" for detection easily. However, it seems there's not a neck keypoint in the detection result. That's why I want to use another dataset, such as "posetrack18":
And I got the result, yeah sure there's the neck keypoint within it. But I found this uses annotation data in |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi, thanks for using MMPose. The json file (e.g. To run inference on your own images, you would need to create a json file following the coco or posetrack18 format. The bbox information is required and the keypoint field can be left blank. |
Beta Was this translation helpful? Give feedback.
-
You may try using mmdet for human detection. Note mask is not necessary, but bboxes are needed. |
Beta Was this translation helpful? Give feedback.
Hi, thanks for using MMPose. The json file (e.g.
test_posetrack18_val.json
) is only used to provide information like image paths and ground-truth bboxes, which is needed for a top-down pose model. And the keypoint result is predicted by the model.To run inference on your own images, you would need to create a json file following the coco or posetrack18 format. The bbox information is required and the keypoint field can be left blank.