All Projects → FORTH-ModelBasedTracker → Pyopenpose

FORTH-ModelBasedTracker / Pyopenpose

Licence: bsd-3-clause
Python bindings for the Openpose library

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Pyopenpose

Scikit Geometry
Scientific Python Geometric Algorithms Library
Stars: ✭ 220 (-20.58%)
Mutual labels:  wrapper, jupyter-notebook
Machine Learning
my machine-learning tutorial
Stars: ✭ 276 (-0.36%)
Mutual labels:  jupyter-notebook
Prometheus Anomaly Detector
A newer more updated version of the prometheus anomaly detector (https://github.com/AICoE/prometheus-anomaly-detector-legacy)
Stars: ✭ 273 (-1.44%)
Mutual labels:  jupyter-notebook
Demo Chinese Text Binary Classification With Bert
Stars: ✭ 276 (-0.36%)
Mutual labels:  jupyter-notebook
Cameratraps
Tools for training and running detectors and classifiers for wildlife images collected from motion-triggered cameras.
Stars: ✭ 269 (-2.89%)
Mutual labels:  jupyter-notebook
Data analysis
一些爬虫和数据分析相关实战练习
Stars: ✭ 275 (-0.72%)
Mutual labels:  jupyter-notebook
Diou Darknet
Distance-IoU Loss into YOLO v3
Stars: ✭ 275 (-0.72%)
Mutual labels:  jupyter-notebook
Bert Gen
Stars: ✭ 277 (+0%)
Mutual labels:  jupyter-notebook
Introduction Datascience Python Book
Introduction to Data Science: A Python Approach to Concepts, Techniques and Applications
Stars: ✭ 275 (-0.72%)
Mutual labels:  jupyter-notebook
Transformer
Implementation of Transformer model (originally from Attention is All You Need) applied to Time Series.
Stars: ✭ 273 (-1.44%)
Mutual labels:  jupyter-notebook
Toon Me
A Deep Learning project to Toon Portrait Images
Stars: ✭ 276 (-0.36%)
Mutual labels:  jupyter-notebook
Audio Spectrum Analyzer In Python
A series of Jupyter notebooks and python files which stream audio from a microphone using pyaudio, then processes it.
Stars: ✭ 273 (-1.44%)
Mutual labels:  jupyter-notebook
Pycoingecko
Python wrapper for the CoinGecko API
Stars: ✭ 270 (-2.53%)
Mutual labels:  wrapper
Modeleval
A simple tool for generating useful evaluation metrics and plots for machine learning models
Stars: ✭ 275 (-0.72%)
Mutual labels:  jupyter-notebook
Oneclickrun
Another colab notebook!
Stars: ✭ 277 (+0%)
Mutual labels:  jupyter-notebook
Hands On Deep Learning Algorithms With Python
Master Deep Learning Algorithms with Extensive Math by Implementing them using TensorFlow
Stars: ✭ 272 (-1.81%)
Mutual labels:  jupyter-notebook
Generative Adversarial Networks
Tutorial on GANs
Stars: ✭ 275 (-0.72%)
Mutual labels:  jupyter-notebook
Iccv19 Gluoncv
Tutorial Materials for ICCV19
Stars: ✭ 277 (+0%)
Mutual labels:  jupyter-notebook
Scipy2018 Geospatial Data
Stars: ✭ 277 (+0%)
Mutual labels:  jupyter-notebook
Pgcn
Graph Convolutional Networks for Temporal Action Localization (ICCV2019)
Stars: ✭ 276 (-0.36%)
Mutual labels:  jupyter-notebook

PyOpenPose

Python bindings for the awesome Openpose library.

Openpose github page

Building

Clone and build openpose. If you use cmake then make install will copy all necessary headers and libs to an install forder that you specify (default is /usr/local).

Set an environment variable named OPENPOSE_ROOT pointing to the openpose install folder. For running the example scripts make sure OPENPOSE_ROOT contains a models folder with the openpose models.

Note: Openpose lib is under heavy development and the API changes very often. Some API changes will break PyOpenPose. I try to upgrade as soon as possible but I am usually a few days behind. Openning an issue helps to speed-up the proccess. Current PyOpenPose version is built with openpose commit e382698

Note: PyOpenPose requires opencv3.x. You will have to build openpose with opencv3 as well.

Inside the root folder of PyOpenpose run cmake and build with:

mkdir build
cd build
cmake ..
make

Add the folder containing PyOpenPose.so to your PYTHONPATH.

Building the library for python3 or python2

  • Set WITH_PYTHON3 flag in cmake to True (i.e with cmake-gui).
  • rebuild project

Testing

Check the scripts folder for python examples using PyOpenPose.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].