Skip to content

Latest commit

 

History

History
31 lines (16 loc) · 1.05 KB

File metadata and controls

31 lines (16 loc) · 1.05 KB

Blaze detection models in Sentis

The blaze family of models are light-weight models for real-time detection from Google Research. Here we demonstrate using these pretrained models in Unity using Sentis.

We use the Sentis API to augment the models, run asynchronous inference on the GPU on all Unity backends.

These demos use images for detection, but can be easily adapted for videos or webcams.

Face detection

We use the BlazeFace detector model with the Sentis non max suppression operator to recognise multiple faces in an image. Each face has a score, bounding box and 6 keypoints.

Read more

Hand recognition

We use a two-step approach with the BlazeHand detector and BlazeHand landmarker models to recognise a hand in an image with 33 keypoints.

Read more

Pose recognition

We use a two-step approach with the BlazePose detector and BlazePose landmarker models to recognise a pose in an image with 21 keypoints.

Read more