1.0.11 • Published 6 years ago

tf-posenet v1.0.11

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

tf-posenet

NPM package for Tensorflow's PoseNet Pose Estimation Deep Learning Algorithm. This package allows you to use the PoseNet Model locally without internet connection to test it.

Installation

  • Open your terminal and excute this command.
npm install tf-posenet --save
  • Then download this compressed weights file from Google Drive (~127 MB).
  • Create a new directory in you project's folder with name "assets".
  • Extract the weight's downloaded file into that new directory "assets".

Usage

TypeScript

import * as posenet from 'tf-posenet';

async function test(input) {
  var net = await posenet.load(0.75, true);
  var pose_single = net.estimatSinglePose(input);
  var pose_multiple = net.estimatMultiplePose(input);
}

Test

npm run test
1.0.11

6 years ago

1.0.10

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago