pcl
pcl copied to clipboard
Point Cloud Library (PCL)
Image can be based off the `pointcloudlibrary/env` and add it and clang-tidy (version dependent on the github workflow) > IIRC, doesn't clang-tidy require all dependencies to be installed? Ahh, that...
configure fails: ``` -- Configuring done CMake Error in CMakeLists.txt: IMPORTED_LOCATION not set for imported target "Qhull::qhull_r" configuration "Release". CMake Error in CMakeLists.txt: IMPORTED_LOCATION not set for imported target "Qhull::qhull_r"...
This code does not work: ``` find_package(Boost COMPONENTS chrono program_options system filesystem thread date_time regex serialization REQUIRED) find_package(PCL 1.7 REQUIRED) ``` This works: ``` find_package(PCL 1.7 REQUIRED) find_package(Boost COMPONENTS chrono...
**Describe the bug** I'm tring to use gpu_extract_clusters for better performence, but several problems occured. 1. `#include ` happens redefinition, I have to copy the file into my project to...
Tried to compile the tutorials via the `.ci/scripts/build_tutorials.sh` with Clang 13 (default Clang on Ubuntu 21.10) ``` error: implicit conversion from 'int' to 'float' changes value from 2147483647 to 2147483648...
For a PR, I first searched for all file extensions used by PCL: ```bash git ls-tree -r HEAD --name-only | sed -e 's/.*\.//' | sed -e 's/.*\///' | sort |...
## Your Environment * Operating System and version: Ubunt u 18.04 * Compiler: nvcc, g++ * PCL Version: 1.9 ## Context ## Expected Behavior ## Current Behavior I'm trying to...
Primary goal: * Make it easy for C++17 users (via deduction guides and maker function for complex cases) * Make it easy for C++14 users (via maker function, similar to...