[Detector Support]: I can't enable Alerts and Detections in version 0.17 on the Orin Nano. #22696
Replies: 1 comment 1 reply
|
Your configuration looks mostly correct for a Jetson Orin Nano with the TensorRT detector. The logs show the TensorRT engine loaded successfully and detection was turned on for the There are a few issues to address: 1. Detection is not enabled by default in your config You need to explicitly enable detection in your camera configuration. Add cameras:
entrada:
detect:
enabled: true
width: 640
height: 360
fps: 52. Jetson is community supported Jetson devices are community supported, meaning support may be limited. (1), (2) 3. Your TensorRT configuration looks correct Your detector and model configuration matches the documented format: (1) detectors:
tensorrt:
type: tensorrt
device: 0
model:
path: /config/model_cache/tensorrt/yolov7-320.trt
labelmap_path: /labelmap/coco-80.txt
input_tensor: nchw
input_pixel_format: rgb
width: 320
height: 3204. Review configuration issue Your review:
alerts:
labels: [person, car, dog, cat]
required_zones: entradaz0
detections:
labels: [person, car, dog, cat, bird, bicycle]The log entry 📚 Sources:
Have another question? Just tag @inkeep. |



Your configuration looks mostly correct for a Jetson Orin Nano with the TensorRT detector. The logs show the TensorRT engine loaded successfully and detection was turned on for the
entradacamera. (1)There are a few issues to address:
1. Detection is not enabled by default in your config
You need to explicitly enable detection in your camera configuration. Add
enabled: trueunder thedetectsection for each camera: (1)(1)
2. Jetson is community supported
Jetson devices are community supported, meaning support may be limited. (1), (2)
3. Your TensorRT configuration looks correct
Your detec…