Skip to content

Latest commit

 

History

History
103 lines (61 loc) · 3.43 KB

File metadata and controls

103 lines (61 loc) · 3.43 KB

Cascading Networks

Face Detection and Facial Landmarks

face_detection_and_landmarks.sh demonstrates face detection and facial landmarking on one video file source.
This is done by running a face detection pipeline (infer + postprocessing), cropping and scaling all detected faces, and sending them into the 2nd network of facial landmarking. All resulting detections and landmarks are then aggregated and drawn on the original frame. The two networks are running using one Hailo-8 device with two hailonet elements.

Options

./face_detection_and_landmarks.sh [OPTIONS] [-i INPUT_PATH]
  • -i --input is an optional flag, a path to the video/camera displayed.
  • --print-gst-launch prints the ready gst-launch command without running it
  • --show-fps optional - enables printing FPS on screen
  • --max-camera-resolution The maximun input resolution from camera as an input

Run

cd $TAPPAS_WORKSPACE/apps/h8/gstreamer/general/cascading_networks
./face_detection_and_landmarks.sh

The output should look like:

Models

Method of Operation

This app is based on our cascaded networks pipeline template

Object Detection And Pose Estimation

object_detection_and_pose_estimation.sh demonstrates object detection and pose estimation on one video file source.
This is done by running an object detection pipeline, cropping and scaling each detected person, and sending them into a 2nd network of pose estimation. All resulting detections and landmarks are then aggregated and drawn on the original frame. The two networks are running using one Hailo-8 device with two hailonet elements.

Options

./object_detection_and_pose_estimation.sh [OPTIONS] [-i INPUT_PATH]
  • -i --input is an optional flag, a path to the video/camera displayed.
  • --print-gst-launch prints the ready gst-launch command without running it
  • --show-fps optional - enables printing FPS on screen
  • --max-camera-resolution The maximun input resolution from camera as an input

Run

cd $TAPPAS_WORKSPACE/apps/h8/gstreamer/general/cascading_networks
./object_detection_and_pose_estimation.sh

The output should look like:

Model

Joined together:

Method of Operation

This app is based on our cascaded networks pipeline template