Real Time Object Detection on Jetson Xavier

Real time inference demonstration for object detection on Nvidia Xavier
This project focuses on developing a real-time edge processing object detection framework that contains two main components: (a) object detector trained on objects at various scales, and (b) various model compression techniques for fast processing platform deployment.

Today, object detection algorithms have achieved real-time detection speed and accuracy primarily due to the use of Single shot multibox detector and deep learning models. However, the heavy computation load of these deep neural networks makes them ideal only for GPU specific processing. This project aims at applying various state-of-the-art research techniques to refine the original deep learning model(s), including: model compression (e.g. prune and fine-tune), model re-training, improved inferencing (i.e. weight quantization) and network slimming. This is carried out in a way which preserves model accuracy, while generating a smart optimization to increase the speed that fits real-time low power, easily deployable, mini-form factor edge processing platforms.

The goal is to drastically reduce the size of the neural network models, yet achieve comparable accuracy to their uncompressed counterparts. The objective is to use these smaller models to achieve real-time detection speed on smaller processor units designed for use at the edge. This project demonstrate a completed prototype deployed on a miniature low-power neural processing unit (i.e., Nvidia Jetson Xavier). Potential applications include: Processing on the edge device and only sending relevant information to the user/processing station for exploitation. For example, a UAS used by the military to locate enemy bunkers, vehicles, missile launchers, etc., and drones in order to inspect important areas for suspicious activities/alerting can quickly communicate only relevant information. Ultimately deploying, embedding and linking edge processors with optimized deep neural networks will allow a tremendous advantage to various edge node sensor capabilities.

Related