Code Monkey home page Code Monkey logo

Comments (4)

zw199502 avatar zw199502 commented on June 14, 2024 3

I successfully released the project for ROS Noetic. Please follow:

  1. ubuntu20.04 + ros-noetic

  2. sudo apt install libqglviewer-dev-qt5 freeglut3-dev qtbase5-dev

  3. the default opencv version is 3, please revise the related opencv codes same as the format of opencv4
    #include <opencv2/highgui/highgui.hpp> -> #include<opencv2/highgui/highgui_c.h>
    #include <opencv/cv.h> -> #include <opencv2/imgproc.hpp>
    #include <opencv/highgui.h> -> #include<opencv2/highgui/highgui_c.h>
    CV_LOAD_IMAGE_ANYDEPTH -> cv::IMREAD_ANYDEPTH

CMakeLists.txt
set(CMAKE_CXX_STANDARD 11) -> set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_FLAGS "-Wall -Wextra -fPIC") -> set(CMAKE_CXX_FLAGS "-Wall -Wextra -fPIC -pthread")

cloud.cpp
return make_shared(pcl_cloud); -> return boost::make_shared(pcl_cloud);

  1. catkin build depth_clustering -DPYTHON_EXECUTABLE=/usr/bin/python3
    you should install catkin build tools by yourself.
    Please do not build in Anaconda environment becasue of the conflict of Qt version

from depth_clustering.

niosus avatar niosus commented on June 14, 2024

I am happy to merge a PR about this, but probably won't have the time to port it myself.

from depth_clustering.

 avatar commented on June 14, 2024

We will work on this soon.

from depth_clustering.

SunZezhou avatar SunZezhou commented on June 14, 2024

Thanks to the steps above, for me one additional step needs to be added for it to work properly:

CMakeLists.txt line 93

elseif(${DISTRO} MATCHES "16.04" OR ${DISTRO} MATCHES "18.04") -> elseif(${DISTRO} MATCHES "16.04" OR ${DISTRO} MATCHES "18.04" OR ${DISTRO} MATCHES "20.04")

from depth_clustering.

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.