Skip to content

Commit 5b7fdb3

Browse files
author
Gines
committed
Merge remote-tracking branch 'origin/master'
# Conflicts: # README.md
2 parents 46c78fe + 1e137bc commit 5b7fdb3

File tree

1 file changed

+43
-47
lines changed

1 file changed

+43
-47
lines changed

README.md

Lines changed: 43 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
OpenPose
22
====================================
33

4+
OpenPose is a **library for real-time multi-person keypoint detection and multi-threading written in C++** using OpenCV and Caffe*, authored by [Gines Hidalgo](http://gines-hidalgo.site123.me/), [Zhe Cao](http://www.andrew.cmu.edu/user/zhecao), [Tomas Simon](http://www.cs.cmu.edu/~tsimon/), [Shih-En Wei](https://scholar.google.com/citations?user=sFQD3k4AAAAJ&hl=en), [Hanbyul Joo](http://www.cs.cmu.edu/~hanbyulj/) and [Yaser Sheikh](http://www.cs.cmu.edu/~yaser/).
5+
6+
\* It uses Caffe, but it could easily be ported to other frameworks (Tensorflow, Torch, etc.). If you implement any of those, feel free to make a pull request!
7+
48
## Latest News
59
- Jul 2017: **Windows**, New [**portable demo**](doc/installation.md#installation---demo) **and** [**easier library installation**](doc/installation.md#installation---library)!
610
- Jul 2017: **Hands** released!
@@ -9,25 +13,58 @@ OpenPose
913
- Apr 2017: **Body** released!
1014
- Check all the [release notes](doc/release_notes.md).
1115

12-
We are offering [internships at Carnegie Mellon University as OpenPose programmer](https://docs.google.com/document/d/14SygG39NjIRZfx08clewTdFMGwVdtRu2acyCi3TYcHs/edit?usp=sharing) (need to live in or be willing to move to Pittsburgh).
16+
## Results
17+
### Body + Hands + Face Estimation
18+
<p align="center">
19+
<img src="doc/media/pose_face_hands.gif", width="480">
20+
</p>
1321

22+
### Body Estimation
23+
<p align="center">
24+
<img src="doc/media/dance.gif", width="480">
25+
</p>
26+
27+
### Body + Face Estimation
28+
<p align="center">
29+
<img src="doc/media/pose_face.gif", width="480">
30+
</p>
1431

32+
### Body + Hands
33+
<p align="center">
34+
<img src="doc/media/pose_hands.gif", width="480">
35+
</p>
1536

16-
## Introduction
17-
OpenPose is a **library for real-time multi-person keypoint detection and multi-threading written in C++** using OpenCV and Caffe*, authored by [Gines Hidalgo](http://gines-hidalgo.site123.me/), [Zhe Cao](http://www.andrew.cmu.edu/user/zhecao), [Tomas Simon](http://www.cs.cmu.edu/~tsimon/), [Shih-En Wei](https://scholar.google.com/citations?user=sFQD3k4AAAAJ&hl=en), [Hanbyul Joo](http://www.cs.cmu.edu/~hanbyulj/) and [Yaser Sheikh](http://www.cs.cmu.edu/~yaser/).
37+
## Contents
38+
1. [Latest News](#latest-news)
39+
2. [Results](#results)
40+
3. [Introduction](#introduction)
41+
4. [Functionality](#functionality)
42+
5. [Operating Systems](#operating-systems)
43+
6. [Installation, Reinstallation and Uninstallation](#installation-reinstallation-and-uninstallation)
44+
7. [Custom Caffe](#custom-caffe)
45+
8. [Quick Start](#quick-start)
46+
1. [Demo](#demo)
47+
2. [OpenPose Wrapper](#openpose-wrapper)
48+
3. [OpenPose Library](#openpose-library)
49+
9. [Output](#output)
50+
10. [Speed Up Openpose And Benchmark](#speed-up-openpose-and-benchmark)
51+
11. [Send Us Failure Cases!](#send-us-failure-cases)
52+
12. [Send Us Your Feedback!](#send-us-your-feedback)
53+
13. [Citation](#citation)
54+
14. [Other Contributors](#other-contributors)
1855

19-
\* It uses Caffe, but the code is ready to be ported to other frameworks (Tensorflow, Torch, etc.). If you implement any of those, feel free to make a pull request!
2056

57+
## Introduction
2158
OpenPose represents the **first real-time system to jointly detect human body, hand and facial keypoints (in total 130 keypoints) on single images**. In addition, the system computational performance on body keypoint estimation is invariant to the number of detected people in the image.
2259

2360
OpenPose is freely available for free non-commercial use, and may be redistributed under these conditions. Please, see the [license](LICENSE) for further details. [Interested in a commercial license? Check this link](https://flintbox.com/public/project/47343/). For commercial queries, contact [Yaser Sheikh](http://www.cs.cmu.edu/~yaser/).
2461

2562
In addition, OpenPose would not be possible without the [CMU Panoptic Studio](http://domedb.perception.cs.cmu.edu/).
2663

64+
The pose estimation work is based on the C++ code from [the ECCV 2016 demo](https://github.com/CMU-Perceptual-Computing-Lab/caffe_rtpose), "Realtime Multiperson Pose Estimation", [Zhe Cao](http://www.andrew.cmu.edu/user/zhecao), [Tomas Simon](http://www.cs.cmu.edu/~tsimon/), [Shih-En Wei](https://scholar.google.com/citations?user=sFQD3k4AAAAJ&hl=en), [Yaser Sheikh](http://www.cs.cmu.edu/~yaser/). The [original repo](https://github.com/ZheC/Multi-Person-Pose-Estimation) includes Matlab and Python version, as well as the training code.
2765

2866

29-
Library main functionality:
30-
67+
## Functionality
3168
* Multi-person 15 or **18-keypoint body pose** estimation and rendering. **Running time invariant to number of people** on the image.
3269

3370
* Multi-person **2x21-keypoint hand** estimation and rendering. Note: In this initial version, **running time** linearly **depends** on the **number of people** on the image. **Coming soon (in around 1-5 days)!**
@@ -44,8 +81,6 @@ Library main functionality:
4481

4582
* All the functionality is wrapped into a **simple-to-use OpenPose Wrapper class**.
4683

47-
The pose estimation work is based on the C++ code from [the ECCV 2016 demo](https://github.com/CMU-Perceptual-Computing-Lab/caffe_rtpose), "Realtime Multiperson Pose Estimation", [Zhe Cao](http://www.andrew.cmu.edu/user/zhecao), [Tomas Simon](http://www.cs.cmu.edu/~tsimon/), [Shih-En Wei](https://scholar.google.com/citations?user=sFQD3k4AAAAJ&hl=en), [Yaser Sheikh](http://www.cs.cmu.edu/~yaser/). The [full project repo](https://github.com/ZheC/Multi-Person-Pose-Estimation) includes Matlab and Python version, as well as training code.
48-
4984

5085

5186
## Operating Systems
@@ -55,45 +90,6 @@ The pose estimation work is based on the C++ code from [the ECCV 2016 demo](http
5590

5691

5792

58-
## Results
59-
### Body + Hands + Face Estimation
60-
<p align="center">
61-
<img src="doc/media/pose_face_hands.gif", width="480">
62-
</p>
63-
64-
### Body Estimation
65-
<p align="center">
66-
<img src="doc/media/dance.gif", width="480">
67-
</p>
68-
69-
### Body + Face Estimation
70-
<p align="center">
71-
<img src="doc/media/pose_face.gif", width="480">
72-
</p>
73-
74-
### Body + Hands
75-
<p align="center">
76-
<img src="doc/media/pose_hands.gif", width="480">
77-
</p>
78-
79-
80-
## Contents
81-
1. [Installation, Reinstallation and Uninstallation](#installation-reinstallation-and-uninstallation)
82-
2. [Quick Start](#quick-start)
83-
1. [Demo](#demo)
84-
2. [OpenPose Wrapper](#openpose-wrapper)
85-
3. [OpenPose Library](#openpose-library)
86-
3. [Output](#output)
87-
4. [Custom Caffe](#custom-caffe)
88-
5. [Standalone Face Or Hand Keypoint Detector](#standalone-face-or-hand-keypoint-detector)
89-
6. [Speed Up Openpose And Benchmark](#speed-up-openpose-and-benchmark)
90-
7. [Send Us Failure Cases!](#send-us-failure-cases)
91-
8. [Send Us Your Feedback!](#send-us-your-feedback)
92-
9. [Citation](#citation)
93-
10. [Other Contributors](#other-contributors)
94-
95-
96-
9793
## Installation, Reinstallation and Uninstallation
9894
You can find the installation, reinstallation and uninstallation steps on: [doc/installation.md](doc/installation.md).
9995

0 commit comments

Comments
 (0)