在Mac上运行TensorFlow的PoseNet

项目地址:https://github.com/tensorflow/tfjs-models

首先将项目clone下来

1
git clone https://github.com/tensorflow/tfjs-models.git

进入PoseNet目录

1
cd posenet/

使用yarn安装,如果电脑上没有安装yarn,可以先使用homebrew安装yarn

1
brew install yarn

运行安装

1
yarn

进入demos文件夹

1
cd demos

安装依赖关系并准备build目录:

1
yarn

安装完成,现在可以运行demo了

1
yarn watch

此时弹出一个浏览器窗口

点击Coco images demo则会演示如何在图像中进行姿态估计,并且演示了多人和单人姿态估计之间的差异

multi-person

点击Camera feed demo会打开摄像头,进行实时的姿态估计

one-person

文章目录