Jetson Orin NX, - Jetson Interface not working

i have a jetson Orin NX 8 Gb,

i am following the jetson-inference/docs/building-repo-2.md at master · dusty-nv/jetson-inference · GitHub,

trying to use jetson-interface.

  1. seems like detectnet-console.py is not there anymore.
    jetson@ubuntu:~/jetson-inference/build/aarch64/bin$ ./detectnet-concole.py images/peds_0.jpg output_0.jpg
    bash: ./detectnet-concole.py: No such file or directory

  2. when i run
    jetson@ubuntu:~/jetson-inference/build/aarch64/bin$ ./detectnet.py images/peds_0.jpg output_0.jpg

it has this error, how to solve.
jetson@ubuntu:~/jetson-inference/build/aarch64/bin$ ./detectnet-concole.py images/peds_0.jpg output_0.jpg
bash: ./detectnet-concole.py: No such file or directory

thanks

Hi,

Could you try the below command:

$ ./detectnet.py --network=ssd-mobilenet-v2 images/peds_0.jpg images/test/output.jpg  ```
Thanks.

hi AastaLLL,

i run your command above, i got this,
[TRT] CUDA lazy loading is enabled.
[TRT] device GPU, loading /usr/bin/ networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT] TensorRT 10.3 does not support legacy caffe models
[TRT] device GPU, failed to load networks/SSD-Mobilenet-v2/ssd_mobilenet_v2_coco.uff
[TRT] detectNet – failed to initialize.
Traceback (most recent call last):
File “/home/jetson/jetson-inference/build/aarch64/bin/./detectnet.py”, line 53, in
net = detectNet(args.network, sys.argv, args.threshold)
Exception: jetson.inference – detectNet failed to load network

And i am using Orin NX 8Gb with Jetpack 6.2 just clean flahsed.

Hi,

Jetson-inference runs better with JetPack 6.0 due to TensorRT compatibility.
Could you set up the device and give it a try?

Thanks.