Git Product home page Git Product logo

Comments (3)

GetOverMassif avatar GetOverMassif commented on May 28, 2024

check if you choose the right path of opencv when compiling pangolin?

from dsp-slam.

vijendra1125 avatar vijendra1125 commented on May 28, 2024

I built DSP-SLAM using build_cuda113.sh and the suggestion in this issue description helped me building it successfully whereas when I ran the dsp_slam with argument to save the map I got the error /usr/local/lib/libtiff.so.5: no version information available.

I would like to share the solution here in case someone else faces same problem. To resolve this I created symbolic link for libtiff.so.5 from /usr/lib/x86_64-linux-gnu to /usr/local/lib
To do that first either remove or rename the /usr/local/lib/libtiff.so.5 and then run
sudo ln -s /usr/lib/x86_64-linux-gnu/libtiff.so.5 /usr/local/lib/libtiff.so.5

from dsp-slam.

TINY-KE avatar TINY-KE commented on May 28, 2024

I tried all the methods mentioned above, but none of them worked.
I resolved the issue by adding the absolute path of libtiff.so.5 to the target_link_libraries() in CMakeLists.txt.

Obtained the absolute path of libtiff.so.5 by running the command
ldd Thirdparty/Pangolin/build/libpango_image.so | grep tiff
Then

target_link_libraries(dsp_slam ${PROJECT_NAME} /usr/lib/x86_64-linux-gnu/libtiff.so.5)
target_link_libraries(dsp_slam_mono ${PROJECT_NAME} /usr/lib/x86_64-linux-gnu/libtiff.so.5)

from dsp-slam.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.