Intel RealSense D435 on Jetson nano
Hey, I want to generate CUDA code and run it in Jetson nano and use D435's depth camera. But I was not able to install the realsense sdk. I can see in Matlab, that the jetson object has 3 cameras connected to it, but I cant switch between them in webcam(), because their names are the same.
-
Hi Kubaixixel If you want to build the RealSense SDK (librealsense) with CMake and have CUDA support enabled then you could try the Nano installation guide in the link below, which has worked for other Nano users.
https://github.com/IntelRealSense/librealsense/issues/6964#issuecomment-707501049
This guide installs the Python compatibility wrapper for librealsense at the same time as installing the SDK. If you want to install the Python wrapper, you should edit the PYTHONPATH instruction below to use the Python version that is on your particular computer (e.g change '3.6' to '3.7' if you are using Python 3.7):
export PYTHONPATH=$PYTHONPATH:/usr/local/lib/python3.6/pyrealsense2
If you do not need to install the Python wrapper then you could shorten the CMake build instruction to the one below:
cmake ../ -DFORCE_RSUSB_BACKEND=ON -DCMAKE_BUILD_TYPE=release -DBUILD_EXAMPLES=true -DBUILD_GRAPHICAL_EXAMPLES=true -DBUILD_WITH_CUDA:bool=true
And then stop after Point 6 and do not carry out points 7-9.
Please sign in to leave a comment.
Comments
1 comment