Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 912 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 912 Bytes

High Throuput Object detector for the Nvidia Jetson device family

This is the code used in this blog post to demonstrate different ways of improving the performance of a simple Object Detection program.

Clone the example repo

https://github.com/paloukari/jetson-detectors
cd jetson-detectors

To build and run the CPU accelerated container

sudo docker build . -f ./docker/Dockerfile.cpu -t object-detection-cpu
sudo docker run --rm --runtime nvidia --privileged -ti -e DISPLAY=$DISPLAY -v "$PWD":/src -p 32001:22 object-detection-cpu

To build and run the GPU accelerated container

sudo docker build . -f ./docker/Dockerfile.gpu -t object-detection-gpu
sudo docker run --rm --runtime nvidia --privileged -ti -e DISPLAY=$DISPLAY -v "$PWD":/src -p 32001:22 object-detection-gpu

Run from the root folder of the repo