Tagged by Aether Jenkins version-tag job: 26
Add rtpjitterbuffer to gst pipeline

Change-Id: Ie888d1e2cba2162bec4a8b4b226f71fcb3f58948
2 files changed
tree: 96b4745256e52b6f593de732e1b9120eaabd2c3f
  1. .gitignore
  2. LICENSES/
  3. Makefile
  4. README.md
  5. VERSION
  6. bin/
  7. docker/
  8. models/
  9. person_detection/
  10. requirements.txt
  11. resources/
README.md

Person-detection Application

person-detection is a demo application that runs in the Aether edge and showcases Aether's support for for low-latency, AI/ML driven IOT applications that make use of Aether's support for end-to-end slicing.

Build base image

git clone git@github.com:openvinotoolkit/docker_ci.git
cd docker_ci
python3 docker_openvino.py build -d cpu -os ubuntu18 --distribution runtime --product_version 2021.4

Build person-detection

make docker-build

Start RPi camera

M-JPEG

gst-launch-1.0 rpicamsrc bitrate=1000000 ! video/x-raw,width=640,height=480,framerate=25/1,profile=baseline ! jpegenc ! rtpjpegpay ! udpsink host=10.128.99.49 port=5000

H.264

gst-launch-1.0 rpicamsrc bitrate=1000000 ! video/x-h264,width=640,height=480,framerate=15/1 ! h264parse ! rtph264pay config-interval=10 pt=96 ! udpsink host=10.128.99.49 port=5000

Start person-detection-app

make docker-run
docker pull registry.aetherproject.org/aether-apps/person-detection-app:<tag>
docker run -itu root:root --privileged --network host registry.aetherproject.org/aether-apps/person-detection-app:<tag>

Quick test

./bin/person_detection.sh -i resources/run.mp4

or

make run-native-test