Hello,
I am in need of a little guidance as I am unsure exactly how to proceed with my project.
I have a Jetson Nano B01 setup and running Yolov7 with CUDA support. What I’d like to do is use an OAK-D-Lite to generate the color frames and use Yolov7 on my Jetson for my Object Detection. To do this I need to get DepthAI installed into the same environment as the Yolov7.
I looked up the dependencies and requirements for DepthAI posted on the Github pages and checked them vs. what I have currently installed.
In my Yolov7 Build I have the following installed.
Ubuntu 18.04, Jetpack 4.6.4, PyTorch 1.8.0, TorchVision 0.9.0, CUDA 10.2.3, TensorRT 8.2.1.8, pycuda 2022.1, Future 0.18.3, Cython 3.0.4, Pillow 8.4.0, Python: 3.6.9, Numpy 1.19.4, Matplotlib 3.3.4, OpenCV 4.5.1 w/ CUDA, and a 5.9G SWAP memory
I checked the python install_dependencies.sh and I found that I am only missing a few packages
libilmbase-dev, libopenexr-dev, libjasper-dev, libdc1394-dev, qt5-qmake, qtbase5-dev-tools, qml-module-qtquick-layouts, qml-module-qtquick-window2, qtbase5-dev, python3-pyqt5.qtquick, qml-module-qtquick-controls2, qml-module-qt-labs-platform, qtdeclarative5-dev
Then I checked the GitHub pages for dependencies and found
CMAKE >=3.10, C/C++14 compiler, and OpenCV4
I looked at install_requirements.py but got a little lost on what exactly is needed and what would just overwrite what I already have.
I think I have what it needs
Can I modify the install_dependencies.sh to install what I am missing, then just clone the repository, and then edit the .bash file? Where I get stuck is the python install_requirements.py, because I am unsure how to modify it so as not overwrite what I already have working.
Am I on the right path or is there a better way to do this?
Thanks!