APRIL-ZJU / lidar_IMU_calib

[IROS 2020] Targetless Calibration of LiDAR-IMU System Based on Continuous-time Batch Estimation
GNU General Public License v3.0
927 stars 224 forks source link

error: ‘class pclomp::NormalDistributionsTransform has no member named ‘getTargetCells()' #56

Open goat-spike opened 1 year ago

goat-spike commented 1 year ago

When i catkin_make i got this error: error: ‘class pclomp::NormalDistributionsTransform has no member named ‘getTargetCells()' and i find it points to the ndt_omp.h then i find that in their https://github.com/APRIL-ZJU/ndt_omp the getTargetCell member function is defined as const TargetGrid& getTargetCells () const { return targetcells; }

i change it as const TargetGrid& getTargetCells() const { return targetcells; } then catkin_make the error has solved.

charon-cheung commented 9 months ago

dude, you should say add this function in ndt_omp.h, it had this function in old version

goat-spike commented 9 months ago

yes, dude, thanks,it had this function in old version.