ruiminshen / openpose-pytorch

PyTorch implementation of the OpenPose

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PyTorch implementation of the OpenPose

The OpenPose is one of the most popular keypoint estimator, which uses two branches of feature map (is trained and enhanced via multiple stages) to estimate (via a postprocess procedure) the position of keypoints (via Gaussian heatmap) and the relationship between keypoints (called part affinity fields), respectively. This project adopts PyTorch as the developing framework to increase productivity, and utilize ONNX to convert models into Caffe 2 to benefit engineering deployment. If you are benefited from this project, a donation will be appreciated (via PayPal, 微信支付 or 支付宝).

Designs

  • Flexible configuration design. Program settings are configurable and can be modified (via configure file overlaping (-c/--config option) or command editing (-m/--modify option)) using command line argument.

  • Monitoring via TensorBoard. Such as the loss values and the debugging images (such as IoU heatmap, ground truth and predict bounding boxes).

  • Parallel model training design. Different models are saved into different directories so that can be trained simultaneously.

  • Time-based output design. Running information (such as the model, the summaries (produced by TensorBoard), and the evaluation results) are saved periodically via a predefined time.

  • Checkpoint management. Several latest checkpoint files (.pth) are preserved in the model directory and the older ones are deleted.

  • NaN debug. When a NaN loss is detected, the running environment (data batch) and the model will be exported to analyze the reason.

  • Unified data cache design. Various dataset are converted into a unified data cache via a programmable (a series of Python lambda expressions, which means some points can be flexibly generated) configuration. Some plugins are already implemented. Such as MS COCO.

  • Arbitrarily replaceable model plugin design. The deep neural network (both the feature extraction network and the stage networks) can be easily replaced via configuration settings. Multiple models are already provided. Such as the oringal VGG like network, Inception v4, MobileNet v2 and U-Net.

  • Extendable data preprocess plugin design. The original images (in different sizes) and labels are processed via a sequence of operations to form a training batch (images with the same size, and bounding boxes list are padded). Multiple preprocess plugins are already implemented. Such as augmentation operators to process images and labels (such as random rotate and random flip) simultaneously, operators to resize both images and labels into a fixed size in a batch (such as random crop), and operators to augment images without labels (such as random blur, random saturation and random brightness).

Quick Start

This project uses Python 3. To install the dependent libraries, make sure the pyopenpose is installed, and type the following command in a terminal.

sudo pip3 install -r requirements.txt

quick_start.sh contains the examples to perform detection and evaluation. Run this script. The COCO dataset is downloaded (aria2 is required) and cached, and the original pose model (18 parts and 19 limbs) is converted into PyTorch's format. If a webcam is present, the keypoint estimation demo will be shown. Finally, the training program is started.

About

PyTorch implementation of the OpenPose

License:GNU Lesser General Public License v3.0


Languages

Language:Python 99.1%Language:Shell 0.9%