All Projects → zhangboshen → DenseNet-human-pose-estimation

zhangboshen / DenseNet-human-pose-estimation

Licence: other
Using DenseNet for human pose estimation based on TensorFlow.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to DenseNet-human-pose-estimation

OpenPoseDotNet
OpenPose wrapper written in C++ and C# for Windows
Stars: ✭ 55 (+61.76%)
Mutual labels:  human-pose-estimation
Ensemble-of-Multi-Scale-CNN-for-Dermatoscopy-Classification
Fully supervised binary classification of skin lesions from dermatoscopic images using an ensemble of diverse CNN architectures (EfficientNet-B6, Inception-V3, SEResNeXt-101, SENet-154, DenseNet-169) with multi-scale input.
Stars: ✭ 25 (-26.47%)
Mutual labels:  densenet
simple-HigherHRNet
Multi-person Human Pose Estimation with HigherHRNet in Pytorch
Stars: ✭ 122 (+258.82%)
Mutual labels:  human-pose-estimation
python cv AI ML
用python做计算机视觉,人工智能,机器学习,深度学习等
Stars: ✭ 73 (+114.71%)
Mutual labels:  densenet
Keypoint Communities
[ICCV '21] In this repository you find the code to our paper "Keypoint Communities".
Stars: ✭ 255 (+650%)
Mutual labels:  human-pose-estimation
metro-pose3d
Metric-Scale Truncation-Robust Heatmaps for 3D Human Pose Estimation
Stars: ✭ 51 (+50%)
Mutual labels:  human-pose-estimation
yolov3-ios
Using yolo v3 object detection on ios platform.
Stars: ✭ 55 (+61.76%)
Mutual labels:  densenet
ICON
ICON: Implicit Clothed humans Obtained from Normals (CVPR 2022)
Stars: ✭ 641 (+1785.29%)
Mutual labels:  human-pose-estimation
gluon2pytorch
Gluon to PyTorch deep neural network model converter
Stars: ✭ 72 (+111.76%)
Mutual labels:  densenet
image-recognition
采用深度学习方法进行刀具识别。
Stars: ✭ 19 (-44.12%)
Mutual labels:  densenet
FastPose
pytorch realtime multi person keypoint estimation
Stars: ✭ 36 (+5.88%)
Mutual labels:  human-pose-estimation
MultiPerson-pose-estimation
This is the proposal network for MultiPerson Pose Estimation.
Stars: ✭ 15 (-55.88%)
Mutual labels:  human-pose-estimation
deeplearning-mpo
Replace FC2, LeNet-5, VGG, Resnet, Densenet's full-connected layers with MPO
Stars: ✭ 26 (-23.53%)
Mutual labels:  densenet
speech-recognition-transfer-learning
Speech command recognition DenseNet transfer learning from UrbanSound8k in keras tensorflow
Stars: ✭ 18 (-47.06%)
Mutual labels:  densenet
densenet
A PyTorch Implementation of "Densely Connected Convolutional Networks"
Stars: ✭ 50 (+47.06%)
Mutual labels:  densenet
posture recognition
Posture recognition based on common camera
Stars: ✭ 91 (+167.65%)
Mutual labels:  human-pose-estimation
MEVA
Official implementation of ACCV 2020 paper "3D Human Motion Estimation via Motion Compression and Refinement" (Identical repo to https://github.com/KlabCMU/MEVA, will be kept in sync)
Stars: ✭ 93 (+173.53%)
Mutual labels:  human-pose-estimation
pytorch-SRDenseNet
Pytorch implementation for SRDenseNet (ICCV2017)
Stars: ✭ 70 (+105.88%)
Mutual labels:  densenet
PARE
Code for ICCV2021 paper PARE: Part Attention Regressor for 3D Human Body Estimation
Stars: ✭ 222 (+552.94%)
Mutual labels:  human-pose-estimation
TensorMONK
A collection of deep learning models (PyTorch implemtation)
Stars: ✭ 21 (-38.24%)
Mutual labels:  densenet

DenseNet-human-pose-estimation

This is a simply and raw code using DenseNet to do human pose estimation task.

This url is a DenseNet model stucture definition based on Tensorflow.

This is a basic stucture of densenet: DenseNet

I use 3 blocks, growth rate 12, and I add two fully_connected layers to do keypoints regression task.

DenseNet_Kinect_train.py is training code, including model stucture definition, data_processing and training phase with GradientDescentOptimizer.

P.S. This code is coarse, raw, I didn't consider too much about time consuming and runing efficiency.

Data

Input: Batch of 200×200 depth images, three channels, and of course it could be RGB image, containing one single person body.

Output: n joints(in my code,n = 11) coordinate, a n×2 vector.

These two dataset might help to provide training data:
ITOP by Feifei Li et al, https://www.albert.cm/projects/viewpoint_3d_pose/ ,
and NTU-RGBD by Jun Liu et al, http://rose1.ntu.edu.sg/datasets/actionrecognition.asp

Results

Here are some results,

Results

And these images are aquired by Kinect V2, normalized to 0~255, copy paste to 3 channels.

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].