Skip to content

Commit

Permalink
Changed orientation descriptor name to camel case.
Browse files Browse the repository at this point in the history
  • Loading branch information
simonpierredeschenes committed Jan 24, 2024
1 parent f9ffddd commit 031b176
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions norlab_icp_mapper/Trajectory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ void Trajectory::save(std::string filename) const
Eigen::MatrixXf features(dimension, poses.size());

PointMatcher<float>::DataPoints::Labels descriptorLabels;
descriptorLabels.push_back(PointMatcher<float>::DataPoints::Label("orientation_x", dimension));
descriptorLabels.push_back(PointMatcher<float>::DataPoints::Label("orientation_y", dimension));
descriptorLabels.push_back(PointMatcher<float>::DataPoints::Label("orientationX", dimension));
descriptorLabels.push_back(PointMatcher<float>::DataPoints::Label("orientationY", dimension));
if(dimension == 3)
{
descriptorLabels.push_back(PointMatcher<float>::DataPoints::Label("orientation_z", dimension));
descriptorLabels.push_back(PointMatcher<float>::DataPoints::Label("orientationZ", dimension));
}
Eigen::MatrixXf descriptors(dimension * dimension, poses.size());

Expand Down

0 comments on commit 031b176

Please sign in to comment.