# "Recognition" Design:
The purpose of this work is to demonstrate few state of art computer vision applications like Gesture, Emotions, Posture and Face Recognitions using popular computer vision open source libraries OpenPose/DLIB.
## 1) Introduction:
The **recognition** application design and code is rightly integrated into OpenPose C++/Multithreaded framework. Fig(1) shows software architecture. Gesture, Emotions and Posture recognition is built based on OpenPose hand, face and pose libraries respectively. While Face recognition is built based on DLIB computer vision libraries.
Fig(1): Software Architecture:
<img src="images/software_arch.png" height="400"/>
Modules in orange are newly added/integrated for "recognition". Grey modules are of native OpenPose.
### 1.1) OpenPose Architecture:
Architecture in Fig(1.1) shows two-branch multi-stage CNN. Each stage in the first branch predicts confidence map S^t, and each stage in the second branch predicts PAFs(Part Affinity Fields) L^t. After each stage, the prediction form the two branches, along with the image features, are concatenated for next stage.
Fig(1.1): OpenPose Architecture [1]
<img src="images/openpose_arch.png" height="300"/>
## 2) Classifier:
A Time Distributed Feed Forward (Dense) neural network with LSTM classifier is used to classify openpose samples. Fig(1a) shows Keras Classifier Model. The model is trained with various 2D keypoints estimates with certain distance metric.
Consider a batch of 32 samples, where each sample is a sequence of 5 vectors of 36 dimensions. The batch input shape of the layer is then (32, 5, 36), and the input_shape, not including the samples dimension, is (5, 36). Fig(1a) depicts network for posture(pose) with sample vector dimension of 36. Details of sample vector and distance metric are explained in below sections.
Fig(2): Keras Classifier Model
<img src="images/keras_network.png" height="600"/>
### 2.1) Prediction:
Predictions are done for every time distributed sample in "recognition" software using Kerasify [4]
## 3) OpenPose:
A realtime multi-person skeletal 2D pose estimation deep neural network that locates anatomical keypoints for each person body parts such as limbs, hand, leg etc. using part affinity fields. Details of their design and research can be found [here](https://arxiv.org/pdf/1611.08050.pdf).
### 3.1) Gesture Recognition:
OpenPose **Hand Keypoints** illustrated in Fig(3.1) is used to classify different human hand gestures like victory, wave, stop, fist etc. The **recognition** application constructs a sample vector using cosine distance measured from reference keypoint (0: wrist) to all other hand keypoints as show in the Fig(3.1). This distance metric allows us to uniquely classify different gestures.
Fig(3.1): OpenPose Hand Keypoints [2]
<img src="images/keypoints_hand.png" height="300"/>
Here are few hand keypoints rendered test samples with prediction and its confidence score.
Fig(3.1a): Victory
<img src="images/victory.png" height="200"/>
Fig(3.1b): Stop
<img src="images/stop.png" height="200"/>
Fig(3.1c): ThumbsUP
<img src="images/thumbsup.png" height="200"/>
Fig(3.1d): Pinch
<img src="images/pinch.png" height="200"/>
#### 3.1.1) Gesture classifier training:
**Model parameters:**
epochs = 1000
timesteps = 5
batch_size = 32
dropout = 0.1
activation ='relu'
optimizer ='Adam'
vector_dim = 40
**Confusion Matrix and Validation Accuracy:**
Validation Accuracy: 97%
Number of samples: < 600
Fig(3.1.1) Hand Gesture Training Results
<img src="images/hand_training.png" height="250"/>
### 3.2) Emotions Recognition:
OpenPose **Face Keypoints** illustrated in Fig(3.2) is used to classify different human face emotions like sad, happy, surprise and normal. The **recognition** application constructs a sample vector using both l2 and cosine distance measured from reference keypoint (30: tip of nose) to all other face keypoints as show in Fig(3.2). To reduce the high dimensionality of vector space and better classify keypoints 0 thru 16 (chin and jaw) are ignored. Combining both distance metrics allows us to uniquely classify different face emotions.
Fig(3.2): OpenPose Face Keypoints [2]
<img src="images/keypoints_face.png" height="300"/>
Here are few face emotions rendered test samples with prediction and its confidence score.
Fig(3.2a): Sad
<img src="images/sad.png" height="200"/>
Fig(3.2b): Happy
<img src="images/happy.png" height="200"/>
Fig(3.2c): Surprise
<img src="images/surprise.png" height="200"/>
Fig(3.2d): Normal
<img src="images/normal.png" height="200"/>
#### 3.2.1) Emotions classifier training:
**Model parameters:**
epochs = 1000
timesteps = 5
batch_size = 32
dropout = 0.1
activation ='tanh'
optimizer ='Adadelta'
vector_dim = 96
**Confusion Matrix and Validation Accuracy:**
Validation Accuracy: 96%
Number of samples: < 500
Fig(3.2.1) Face Emotions Training Results
<img src="images/face_training.png" height="250"/>
### 3.3) Posture Recognition:
OpenPose **Pose Keypoints** illustrated in Fig(3.3) is used to classify different human pose (posture) like sitting, standing and close_to_camera. The **recognition** application constructs a sample vector using l2 distance measured from reference keypoint (0: neck) to all other pose keypoints as show in Fig(3.3). This distance metric allows us to uniquely classify different human posture.
Fig(3.3): OpenPose Pose Keypoints [2]
<img src="images/keypoints_pose.png" height="300"/>
Here are few pose rendered test samples with prediction and its confidence score.
Fig(3.3a): Sitting
<img src="images/sitting.png" height="200"/>
Fig(3.3b): Standing
<img src="images/standing.png" height="200"/>
Fig(3.3c): Close_to_camera
<img src="images/close_to_camera.png" height="200"/>
#### 3.3.1) Posture classifier training:
**Model parameters:**
epochs = 1000
timesteps = 5
batch_size = 32
dropout = 0.1
activation ='relu'
optimizer ='Adam'
vector_dim = 36
**Confusion Matrix and Validation Accuracy:**
Validation Accuracy: 98%
Number of samples: < 400
Fig(3.2.1) Pose Training Results
<img src="images/pose_training.png" height="250"/>
## 4) DLIB:
A modern C++ toolkit containing deep learning algorithms and tools for creating computer vision software. Details of DLIB library and supported features can be found [here](https://github.com/davisking/dlib).
### 4.1) Face Recognition:
Face rectangle detected from OpenPose face keypoints is used for DLIB face recognition. Our observation found OpenPose face detection is much faster as its CNN than DLIB HOG based detection models.
Following steps are applied to recognize/train faces:
1) With ROI of face rectangle identify 68 facial landmarks using DLIB shape detector. These landmarks are in same positions as OpenPose, except for two addition of landmarks (left and right) eye balls. The iBUG 300-W face landmark annotation scheme is followed.
2) Affine transformation: Face will be rotated upright, centered, and scaled.
3) Call DNN (ResNet based) to convert each face image in faces into a 128D vector. These 128D vector is unique to each face.
## 5) Limitations:
### 5.1) OpenPose Recognitions:
- Samples are trained with one person for this proof of concept and modeled accordingly. The respective samples and Keras model can be found in train_data folder. Though limited testing was done with more than one person.
- Since the classifier design is based on distance metric it would make more sense to have training data sampled from multiple people with different hand, body and face features.
### 5.2) DLIB Face Recognition:
- Our experiments found ResNet DNN model works fine for most cases, but unable to recognize face when it is co
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
使用OpenPose/DLIB库实现一些最先进的计算机视觉应用程序。 基于C/C++/Python的计算机视觉模型,使用OpenPose、OpenCV、DLIB、Keras和Tensorflow库。目标检测、跟踪、人脸识别、手势、情绪和姿势识别 C/C++/Python based computer DLIB:计算机视觉和其他机器学习的现代C++工具包。 Kerasify:用于从C++应用程序运行KARAS模型的小型库。 OPENCV:开源计算机视觉库。 OpenStA:一个实时多人关键点检测和多线程C++库。 操作系统(支持): Ubuntu 16.04 Nvidia Jetson TX2 要求: 至少有1.6 GB可用的NVIDIA图形卡(NVIDIA smi命令检查Ubuntu中可用的GPU内存)。 至少2 GB的可用RAM内存。 推荐:cuDNN和至少8核的CPU。
资源推荐
资源详情
资源评论
收起资源包目录
computer_vision-master.zip (76个子文件)
computer_vision-master
output
emotions_video.gif 9.54MB
pose_video.gif 23.24MB
hand_gesture_video.gif 16.74MB
face_rec.gif 20.18MB
openpose
images
pose_training.png 60KB
fist.png 158KB
surprise.png 126KB
face_training.png 82KB
keras_network.png 78KB
sad.png 124KB
keypoints_hand.png 181KB
victory.png 158KB
stop.png 165KB
keypoints_face.png 34KB
normal.png 113KB
software_arch.png 103KB
close_to_camera.png 321KB
happy.png 135KB
thumbsup.png 199KB
pinch.png 199KB
openpose_arch.png 96KB
standing.png 213KB
sitting.png 157KB
hand_training.png 77KB
keypoints_pose.png 11KB
Makefile.config 4KB
3rdparty
caffe
Makefile.config 5KB
Makefile 24KB
installation.md 4KB
include
openpose
user_code
kerasify_model.hpp 14KB
pose_model.hpp 6KB
dlib_model.hpp 5KB
Readme.md 8KB
src
openpose
user_code
dlib_model.cpp 14KB
kerasify_model.cpp 24KB
pose_model.cpp 27KB
examples
user_code
python
kerasify.py 9KB
kerasify.pyc 6KB
rnn_lstm_classifier.py 6KB
rnn_lstm_classifier.ipynb 74KB
.ipynb_checkpoints
rnn_lstm_classifier-checkpoint.ipynb 97KB
openpose_recognition.cpp 58KB
Makefile 16KB
train_data
pose
pose_labels_raw.txt 622B
pose_samples_raw.txt 222KB
pose_model.h5 64KB
pose_labels.txt 7KB
pose_model.json 40B
pose_names.txt 104B
pose_samples.txt 1.28MB
pose.model 32KB
face
face_names.txt 95B
face_labels_raw.txt 802B
face.model 223KB
face_labels.txt 9KB
face_model.h5 254KB
face_model.json 40B
face_samples_raw.txt 1.74MB
face_samples.txt 4.41MB
hand
hand_model.json 40B
left_hand_labels.txt 7KB
hand_samples_raw.txt 338KB
hand_labels_raw.txt 624B
hand_names.txt 105B
right_hand_samples.txt 1.43MB
left_hand_samples.txt 1.38MB
right_hand_labels.txt 7KB
hand.model 40KB
hand_model.h5 70KB
dlib_faces
angelina_jolie.jpg 7KB
arnold_schwarzenegger.jpg 7KB
katy_perry.jpg 6KB
george_clooney.jpg 6KB
brad_pitt.jpg 7KB
dlib_faces.txt 148B
README.md 2KB
共 76 条
- 1
资源评论
自不量力的A同学
- 粉丝: 763
- 资源: 2785
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功