human pose estimation with deep learning
1.0k 次下载
更新时间 2021/1/4
来自 github
human pose estimation with deep learning -凯发k8网页登录
this demo shows how to train and test a human pose estimation using deep neural network. in r2019b, deep learning toolbox(tm) supports low-level apis to customize training loops and it enables us to train flexible deep neural networks. gpu coder(tm) also enables us to deploy the trained model to an nvidia(r) jetson(tm) devices. once deployed, the human pose estimator will be running as a standalone.
this repository includes a pretrained network using the coco dataset, which was collected by the coco consortium (cocodataset.org).
pose estimation toolbox requires the following products:
- matlab(r) r2019b or later (due to the r2019b new feature)
- (required for using gpu computation)
to deploy the model to a nvidia jetson or drive platforms, you'll also need the following products.
- (addon package for gpu coder)
- (addon package for gpu coder)
download the of this repository. to install, open the .mltbx file in matlab.
open the project file to add paths to related folders if you cloned the github respotory.
open simple-pose-estimation.prj
load a pose estimator model.
detector = posenet.poseestimator;
first, read a test image, then crop a person and resize it to fit to the network input.
i = imread('visionteam1.jpg');
bbox = [182 74 303 404];
iin = imresize(imcrop(i,bbox),detector.inputsize(1:2));
then, perform the pose estimation on the image. to visualise the results we can superimpose the detected keypoints on the original image.
keypoints = detectpose(detector,iin);
j = detector.visualizekeypoints(iin,keypoints);
imshow(j);
for a complete example.
the network architecture is based on xiao's pose estimation network[1] which combines upsampling and convolutional parameters into transposed convolutional layers in a much simpler way, without using skip layer connections. we also use coco dataset[2] which is one of the well known large public human pose dataset.
[1] xiao, bin, haiping wu, and yichen wei. “simple baselines for human pose estimation and tracking.” proceedings of the european conference on computer vision (eccv). 2018.
[2] lin, t., et al. "microsoft coco: common objects in context. arxiv 2014." arxiv preprint arxiv:1405.0312.
凯发官网入口首页 copyright 2020 the mathworks, inc.
引用格式
tohru kikawada (2023). human pose estimation with deep learning (https://github.com/matlab-deep-learning/human-pose-estimation-with-deep-learning/releases/tag/v1.0.3), github. 检索来源 .
matlab 版本兼容性
平台兼容性
windows macos linux标签
community treasure hunt
find the treasures in matlab central and discover how the community can help you!
start hunting!探索实时编辑器
创建集代码、输出和格式化文本于一体的可执行脚本文档。
src/ posenet
src/doc
src/doc
版本 | 已发布 | 发行说明 | |
---|---|---|---|
1.0.3 | see release notes for this release on github: |
|
|
1.0.2 | see release notes for this release on github: |
|
|
1.0.1 | see release notes for this release on github: |
|
|
1.0.0 |
|