There is not able to process the librealsense example code 'trajectory' because of the version. (T265)
Hello.
I am using the product 'realsense T265'.
And I tried to compile and build the librealsense example code 'trajectory'.
But I received the error code.
An error has occurred due to the 'librealsense' version.
error line is 456 line.
So I tried to reinstall the librealsense.
But I could not find method.
I want to solve the problem without modifying the 'librealsense' version.
If I need to change the version, please tell me how to change the version.
Please help me how to slove this problem.
thank you.
-
If you are using Linux, I cannot think of a solution that does not involve building, unfortunately.
If you are using SDK version 2.23.0 and want to stick with that then you can rebuild 2.23.0 with support for the example programs. Otherwise, build SDK version 2.29.0.
The easiest way to build Librealsense is with CMake. Delete the contents of your Librealsense build directory and then use the method below to rebuild Librealsense with examples that should match to that SDK version.
Alternatively, if you have access to a PC with Windows, pre-built versions of example programs can be found in the 'Intel RealSense SDK 2.0 > Tools' folder of the pre-built binary version of an SDK.
*************************************
cd ~/librealsense
sudo rm -rf ./build/
mkdir build && cd build
cmake .. -DBUILD_EXAMPLES=true && make -J && sudo make install
Please sign in to leave a comment.
Comments
1 comment