Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 625 Bytes

File metadata and controls

24 lines (15 loc) · 625 Bytes

Pose Estimation with Tensorflow

Pose Estimation using PoseNet model with Tensorflow and Python

Intro

Code based on Tensorflow guide.

Files

There are two files in the directory:

  1. posenet_mobilenet.tflite - The actual Tensorflow Lite model;
  2. tf-PoseNet.py - The code.

How to use

Inside the tf-PoseNet.py file you will find the following line:

cap = cv2.VideoCapture('test6.mp4')

Just replace 'test6.mp4' with your video file or 0 to use webcam.

Run the code.