Back | Next | Contents
Object Detection
The detectnet.cpp
/ detectnet.py
sample that we used previously can also be used for realtime camera streaming. The types of supported cameras include:
- MIPI CSI cameras (
csi://0
) - V4L2 cameras (
/dev/video0
) - RTP/RTSP streams (
rtsp://username:password@ip:port
)
For more information about video streams and protocols, please see the Camera Streaming and Multimedia page.
Run the program with --help
to see a full list of options - some of them specific to detectNet include:
--network
flag which changes the detection model being used (the default is SSD-Mobilenet-v2).--overlay
flag which can be comma-separated combinations ofbox
,labels
,conf
, andnone
- The default is
--overlay=box,labels,conf
which displays boxes, labels, and confidence values
- The default is
--alpha
value which sets the alpha blending value used during overlay (the default is120
).--threshold
value which sets the minimum threshold for detection (the default is0.5
).
Below are some typical scenarios for launching the program on a camera feed:
$ ./detectnet csi://0 # MIPI CSI camera
$ ./detectnet /dev/video0 # V4L2 camera
$ ./detectnet /dev/video0 output.mp4 # save to video file
$ ./detectnet.py csi://0 # MIPI CSI camera
$ ./detectnet.py /dev/video0 # V4L2 camera
$ ./detectnet.py /dev/video0 output.mp4 # save to video file
note: for example cameras to use, see these sections of the Jetson Wiki:
- Nano:https://eLinux.org/Jetson_Nano#Cameras
- Xavier:https://eLinux.org/Jetson_AGX_Xavier#Ecosystem_Products_.26_Cameras
- TX1/TX2: developer kits include an onboard MIPI CSI sensor module (0V5693)
Displayed in the OpenGL window are the live camera stream overlayed with the bounding boxes of the detected objects. Note that the SSD-based models currently have the highest performance. Here is one using the coco-dog
model:
If the desired objects aren't being detected in the video feed or you're getting spurious detections, try decreasing or increasing the detection threshold with the --threshold
parameter (the default is 0.5
).
Next, we'll cover creating the code for a camera detection app in Python.
Next | Coding Your Own Object Detection Program
Back | Detecting Objects from Images
© 2016-2019 NVIDIA | Table of Contents