So I flashed the sd card and have been able to run the CUDA samples, however I havent been able to run the vision works or tensor samples. I am probably doing something wrong as I am new to the jetson nano.
Also can you still use the open cv tutorials providided by nvidia or are those out of date
Hi,
1. OpenCV is installed by default. You can use it directly.
For example.
$ python
>> import cv2
>> ....
2. VisionWorks sample is located at /usr/share. You can compile and execute it with the following commands:
$ /usr/share/visionworks/sources/install-samples.sh .
$ cd VisionWorks-1.6-Samples/
$ make
$ ./bin/aarch64/linux/release/nvx_demo_feature_tracker
Thanks.
It worked! thanks