How to connect the points predicted? #2497
-
Hello, I am trying to understand how the points from the pose estimation are connected. Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi @wallaceloos, I am not an official contributor but I've done exactly what you're asking before. Hopefully I can help! The mmpose visualizer handles the connections between keypoints during inference (running the model with visuals). Not sure if you are using a custom dataset or not, but there is a "dataset_info" dictionary that specifies the connections between keypoints. The visualizer uses these mappings to plot the predicted result. For example, for the COCO dataset (found here you can see the exact keypoints they use and their ids as well as the skeleton connections between them. It is also worth noting that the skeleton keypoint connections are also specified in your annotations for training/val data.
|
Beta Was this translation helpful? Give feedback.
Hi @wallaceloos, I am not an official contributor but I've done exactly what you're asking before. Hopefully I can help!
The mmpose visualizer handles the connections between keypoints during inference (running the model with visuals). Not sure if you are using a custom dataset or not, but there is a "dataset_info" dictionary that specifies the connections between keypoints. The visualizer uses these mappings to plot the predicted result.
For example, for the COCO dataset (found here you can see the exact keypoints they use and their ids as well as the skeleton connections between them.
It is also worth noting that the skeleton keypoint connections are also specified in your annotations f…