Giter Site home page Giter Site logo

Comments (7)

arjunskumar avatar arjunskumar commented on July 19, 2024

@MehmetcanKaymaz Can you try

sudo apt-get update
sudo apt-get install libpython-dev

from vins-fusion-gpu-tx2-nano.

MehmetcanKaymaz avatar MehmetcanKaymaz commented on July 19, 2024

@arjunskumar I tried but still have the same and I wonder why it uses python 2.7. should I use python 3?

from vins-fusion-gpu-tx2-nano.

MehmetcanKaymaz avatar MehmetcanKaymaz commented on July 19, 2024

@arjunskumar this is my CMakeList.txt file maybe the problem is in here,

cmake_minimum_required(VERSION 3.0.2)
project(cv_bridge)

find_package(catkin REQUIRED COMPONENTS rosconsole sensor_msgs)

if(NOT ANDROID)
find_package(PythonLibs)

if(PYTHONLIBS_VERSION_STRING VERSION_LESS "3.8")
# Debian Buster
find_package(Boost REQUIRED python3)
else()
# Ubuntu Focal
find_package(Boost REQUIRED python)
endif()
else()
find_package(Boost REQUIRED)
endif()

set(_opencv_version 4)
find_package(OpenCV 4 QUIET)
if(NOT OpenCV_FOUND)
message(STATUS "Did not find OpenCV 4, trying OpenCV 3")
set(_opencv_version 3)
endif()

find_package(OpenCV 3 REQUIRED PATHS /usr/local/share/OpenCV NO_DEFAULT_PATH
COMPONENTS
opencv_core
opencv_imgproc
opencv_imgcodecs
CONFIG
)

catkin_package(
INCLUDE_DIRS include
LIBRARIES ${PROJECT_NAME}
CATKIN_DEPENDS rosconsole sensor_msgs
DEPENDS OpenCV
CFG_EXTRAS cv_bridge-extras.cmake
)

catkin_python_setup()
include(/usr/local/share/OpenCV/OpenCVConfig.cmake)
include_directories(include ${Boost_INCLUDE_DIRS} ${OpenCV_INCLUDE_DIRS} ${catkin_INCLUDE_DIRS})
link_directories(${Boost_LIBRARY_DIRS})

if(NOT ANDROID)
add_subdirectory(python)
endif()
add_subdirectory(src)
if(CATKIN_ENABLE_TESTING)
add_subdirectory(test)
endif()

install the include folder

install(
DIRECTORY include/${PROJECT_NAME}/
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
)

from vins-fusion-gpu-tx2-nano.

arjunskumar avatar arjunskumar commented on July 19, 2024

@MehmetcanKaymaz Please check your python version

if(PYTHONLIBS_VERSION_STRING VERSION_LESS "3.8")
# Debian Buster
find_package(Boost REQUIRED python3)

if your version is less than 3.8,it will take python2
so the workaround is to change else condition to

find_package(Boost REQUIRED python3)

from vins-fusion-gpu-tx2-nano.

MehmetcanKaymaz avatar MehmetcanKaymaz commented on July 19, 2024

@arjunskumar The problem is not about finding boost I think

python version is 2.7.17
python3 version is 3.6.9
boost version is 1.65.1

from vins-fusion-gpu-tx2-nano.

MehmetcanKaymaz avatar MehmetcanKaymaz commented on July 19, 2024

I solved the problem using ros-perception/vision_opencv#329 (comment)

from vins-fusion-gpu-tx2-nano.

arjunskumar avatar arjunskumar commented on July 19, 2024

Thanks @MehmetcanKaymaz

from vins-fusion-gpu-tx2-nano.

Related Issues (6)

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.