项目作者: djangogo

项目描述 :
这个项目是pose-tensorflow的注释加强版
高级语言: Python
项目地址: git://github.com/djangogo/pose-tensorflow-ANNOT.git
创建时间: 2017-05-03T14:04:46Z
项目社区:https://github.com/djangogo/pose-tensorflow-ANNOT

开源协议:

下载


Human Pose Estimation with TensorFlow

这是pose-tensorflow的注释加强版,便于自己理解用,此外还添加了一些好用的功能

  1. 添加了指定数据集目录的功能

欢迎提问题一起讨论,下面给出作者的信息

Here you can find the implementation of the CNN-based human body part detectors,
presented in the DeeperCut paper:

Eldar Insafutdinov, Leonid Pishchulin, Bjoern Andres, Mykhaylo Andriluka, and Bernt Schiele
DeeperCut: A Deeper, Stronger, and Faster Multi-Person Pose Estimation Model
In European Conference on Computer Vision (ECCV), 2016

For more information visit http://pose.mpi-inf.mpg.de

Python 3 is required to run this code.
First of all, you should install TensorFlow as described in the
official documentation.
We recommended to use virtualenv.

You will also need to install the following Python packages:

  1. $ pip install scipy scikit-image matplotlib pyyaml easydict

When running training or prediction scripts, please make sure to set the environment variable
TF_CUDNN_USE_AUTOTUNE to 0 (see this ticket
for explanation).

If your machine has multiple GPUs, you can select which GPU you want to run on
by setting the environment variable, eg. CUDA_VISIBLE_DEVICES=0.

Demo code

  1. # Download pre-trained model files
  2. $ cd models/mpii
  3. $ ./download_models.sh
  4. $ cd -
  5. # Run demo of single person pose estimation
  6. $ TF_CUDNN_USE_AUTOTUNE=0 python demo/singleperson.py

Training models

Please follow these instructions

Citation

Please cite Deep(er)Cut in your publications if it helps your research:

  1. @article{insafutdinov2016deepercut,
  2. author = {Eldar Insafutdinov and Leonid Pishchulin and Bjoern Andres and Mykhaylo Andriluka and Bernt Schiele},
  3. url = {http://arxiv.org/abs/1605.03170}
  4. title = {DeeperCut: A Deeper, Stronger, and Faster Multi-Person Pose Estimation Model},
  5. year = {2016}
  6. }
  7. @inproceedings{pishchulin16cvpr,
  8. title = {DeepCut: Joint Subset Partition and Labeling for Multi Person Pose Estimation},
  9. booktitle = {CVPR'16},
  10. url = {},
  11. author = {Leonid Pishchulin and Eldar Insafutdinov and Siyu Tang and Bjoern Andres and Mykhaylo Andriluka and Peter Gehler and Bernt Schiele}
  12. }