View my account

There is not able to process the librealsense example code 'trajectory' because of the version. (T265)

Comments

1 comment

  • MartyG

    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

    0
    Comment actions Permalink

Please sign in to leave a comment.