In this post I will demonstrate how to setup mmpose inside a docker container to detect animals poses using the pre-trained COCO-animal pose estimation model from mmpose.
MMPose is an open-source pose estimation toolbox built on PyTorch and part of the OpenMMLab ecosystem. It supports a wide range of pose estimation tasks, including 2D and 3D human and animal pose estimation.
Ps: You can refer to https://mmpose.readthedocs.io/en/latest/demos.html for more details on animals pose estimation using mmpose.
Here are the steps to do that:
Setup Docker container file
To get started create a file named Dockerfile
with the following content
1 | FROM python:3.10-slim |
Add code to detect poses
Next step is creating a file named animal_pose.py
with the following content. This file holds the logic for pose estimation.
1 | import os |
This code will detect poses for both videos and images.
Link everything together
And finally create a file named run.sh
with the following content. This bash script build the docker image, moves files to it, and executes the python script. The output result for input images can be found in out directory.
1 |
|
If you want to get the poses coordinates, you can print keypoints
& keypoint_scores
and use them.