无限想象空间,用Python就能玩的3D人体姿态估计
Jack Cui
共 4255字,需浏览 9分钟
·
2020-09-30 11:05
点击上方“Jack Cui”,选择“加为星标”
第一时间关注技术干货!
1
姿态估计,一直是近几年的研究热点。
它就是根据画面,捕捉人体的运动姿态,比如 2D 姿态估计:
自动驾驶里,就用到了人体行为识别。
通过摄像头捕捉追踪人体的动作变化,根据肢体动作或变化角度判断人体动作行为,可用于无人车、机器人、视频监控等行为分析需求场景。
而这些的基础,就是人体的姿态估计。
再比如,虚拟形象。
2
# using a machine with a monitor to show output on screen
python -m demo.demo_bodymocap --input_path ./sample_data/han_short.mp4 --out_dir ./mocap_output
# screenless mode (e.g., a remote server)
xvfb-run -a python -m demo.demo_bodymocap --input_path ./sample_data/han_short.mp4 --out_dir ./mocap_output
# using a machine with a monitor to show outputs on screen
python -m demo.demo_handmocap --input_path ./sample_data/han_hand_short.mp4 --out_dir ./mocap_output
# screenless mode (e.g., a remote server)
xvfb-run -a python -m demo.demo_handmocap --input_path ./sample_data/han_hand_short.mp4 --out_dir ./mocap_output
# using a machine with a monitor to show outputs on screen
python -m demo.demo_frankmocap --input_path ./sample_data/han_short.mp4 --out_dir ./mocap_output
# screenless mode (e.g., a remote server)
python -m demo.demo_frankmocap --input_path ./sample_data/han_short.mp4 --out_dir ./mocap_output
感兴趣的小伙伴,赶快试试吧!
3
推荐阅读
评论