mmpose使用笔记

环境配置

xtcocoapi, poseval需要从github下clone安装,mmcv可以直接通过pip install安装。

这里主要介绍下top-down方案的使用过程。

demo

我不想install到全局路径中,故每次使用时,需要export一下mmpose的路径。如下:

export PYTHONPATH=path_to_your_mmpose_folder

image demo

python demo/top_down_img_demo.py \
configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/vipnas_res50_coco_256x192.py \
/Users/cby/Downloads/vipnas_res50_coco_256x192-cc43b466_20210624.pth \
--img-root tests/data/coco/ \
--json-file tests/data/coco/test_coco.json \
--out-img-root vis_results \
--device cpu

mmpose使用笔记_第1张图片

video demo

python demo/top_down_video_demo_full_frame_without_det.py \
configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/vipnas_res50_coco_256x192.py \
/Users/cby/Downloads/vipnas_res50_coco_256x192-cc43b466_20210624.pth \
--video-path /Users/cby/Desktop/videos/20210520as001-4.mp4 \
--out-video-root vis_results \
--device cpu --thickness 3 --show
python demo/top_down_video_demo_full_frame_without_det.py \
configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/coco/hrnet_w48_coco_384x288_dark.py \
/Volumes/Elements/pose_models/hrnet_w48_coco_384x288_dark-e881a4b6_20210203.pth \
--video-path /Users/cby/Desktop/videos/20210520as001-4.mp4 \
--out-video-root /Volumes/Elements/pose_models/ \
--device cpu --thickness 3

你可能感兴趣的:(torch)