Skip to content

Commit

Permalink
capitialize Frame
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacharyTaylor committed Nov 2, 2018
1 parent a260f7c commit 523e5d0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/aligner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ void Aligner::lidarOdomTransform(Lidar* lidar, Odom* odom) {
file.open(config_.output_calibration_path, std::ofstream::out);

file << "Active Transformation Vector (x,y,z,rx,ry,rz) from Odometry Frame "
"to Lidar frame:"
"to Lidar Frame:"
<< std::endl
<< "[";
file << x[0] << ", ";
Expand All @@ -180,20 +180,20 @@ void Aligner::lidarOdomTransform(Lidar* lidar, Odom* odom) {
file << x[4] << ", ";
file << x[5] << "]" << std::endl << std::endl;

file << "Active Transformation Matrix from Odometry Frame to Lidar frame:"
file << "Active Transformation Matrix from Odometry Frame to Lidar Frame:"
<< std::endl;
file << T << std::endl << std::endl;

file << "Active Translation Vector (x,y,z) from Odometry Frame to Lidar "
"frame:"
"Frame:"
<< std::endl
<< "[";
file << T.getPosition().x() << ", ";
file << T.getPosition().y() << ", ";
file << T.getPosition().z() << "]" << std::endl << std::endl;

file << "Active Hamiltonen Quaternion (w,x,y,z) from Odometry Frame to "
"Lidar frame:"
"Lidar Frame:"
<< std::endl
<< "[";
file << T.getRotation().w() << ", ";
Expand Down

0 comments on commit 523e5d0

Please sign in to comment.