You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 target_cells_;
}
i change it as
const TargetGrid& getTargetCells() const {
return target_cells_;
}
then catkin_make
the error has solved.
The text was updated successfully, but these errors were encountered:
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 target_cells_;
}
i change it as
const TargetGrid& getTargetCells() const {
return target_cells_;
}
then catkin_make
the error has solved.
The text was updated successfully, but these errors were encountered: