Skip to content

Commit

Permalink
Transform point cloud in GICP6D align function
Browse files Browse the repository at this point in the history
Adapted from 8554190
  • Loading branch information
jspricke committed Aug 25, 2015
1 parent 765c1be commit 84e985c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions registration/src/gicp6d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,9 @@ namespace pcl
final_transformation_ (0, 3) = previous_transformation_ (0, 3) + guess (0, 3);
final_transformation_ (1, 3) = previous_transformation_ (1, 3) + guess (1, 3);
final_transformation_ (2, 3) = previous_transformation_ (2, 3) + guess (2, 3);

// Transform the point cloud
pcl::transformPointCloud (*input_, output, final_transformation_);
}

}

0 comments on commit 84e985c

Please sign in to comment.