Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ void pairAlign (const PointCloud::Ptr cloud_src, const PointCloud::Ptr cloud_tgt
// Set the point representation
reg.setPointRepresentation (boost::make_shared<const MyPointRepresentation> (point_representation));

reg.setInputCloud (points_with_normals_src);
reg.setInputSource (points_with_normals_src);
reg.setInputTarget (points_with_normals_tgt);


Expand All @@ -275,7 +275,7 @@ void pairAlign (const PointCloud::Ptr cloud_src, const PointCloud::Ptr cloud_tgt
points_with_normals_src = reg_result;

// Estimate
reg.setInputCloud (points_with_normals_src);
reg.setInputSource (points_with_normals_src);
reg.align (*reg_result);

//accumulate transformation between each Iteration
Expand Down