Closed LimHyungTae closed 6 months ago
Also, I want to change pcl::NormalEstimation<pcl::PointXYZ, pcl::Normal> normalEstimation;
to pcl::NormalEstimationOMP<pcl::PointXYZ, pcl::Normal> normalEstimation;
to make FPFH faster! (Since in the 64-channel LiDAR point cloud, using OMP boosts the speed)
I also enable getting normal vectors, which is the side-output of the procedure of FPFH. By doing so, the TEASER++ library can be more easily integrated with ROBIN
Also, I fix the equal error in #177
All good except the missing new line character
I did not know the importance of the new line at the end of the files. Here are my modifications:
InsertNewLineAtEOF: true
(e33d700); see here: https://clang.llvm.org/docs/ClangFormatStyleOptions.html#insertnewlineateof . Note that it is supported after the 16 version of clang-format.clang-format
, I add newlines to the files each of whose final new line is missing (0383de1)@LimHyungTae thanks! merging
Hello @jingnanshi , I'd like to do PR.
I modified two things:
Matcher
class