We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi everyone, I have successfully running this project on ubuntu 20.04.
It is easy to build and run this project with a little modifies.
In Cmakelist.txt, change the following line:
FIND_PACKAGE(VTK) INCLUDE(${VTK_USE_FILE}) # include UseVTK.cmake message(STATUS "VTK_LIBRARIES: ${VTK_LIBRARIES}")
find_package(PCL REQUIRED COMPONENTS) include_directories(${PCL_INCLUDE_DIRS}) link_directories(${PCL_LIBRARY_DIRS}) add_definitions(${PCL_DEFINITIONS}) message(STATUS "PCL_LIBRARIES: ${PCL_LIBRARIES}") FIND_PACKAGE(VTK) INCLUDE(${VTK_USE_FILE}) # include UseVTK.cmake message(STATUS "VTK_LIBRARIES: ${VTK_LIBRARIES}") include_directories(${CMAKE_SOURCE_DIR}) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) # For meta object compiler set(CMAKE_AUTORCC ON) # Resource files #set(CMAKE_AUTOUIC ON) # UI files find_package(Qt5 COMPONENTS Widgets REQUIRED) QT5_WRAP_UI(ui_mainwindow.h mainwindow.ui)
target_link_libraries(${PROJECT_NAME} ${PCL_LIBRARIES} Qt5::Widgets vtkGUISupportQt)
After all the modifies, you can build and run this project with just :
sudo apt update sudo apt install libpcl-dev
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi everyone, I have successfully running this project on ubuntu 20.04.
It is easy to build and run this project with a little modifies.
In Cmakelist.txt, change the following line:
After all the modifies, you can build and run this project with just :
The text was updated successfully, but these errors were encountered: