Skip to content

Commit

Permalink
Remove debug string
Browse files Browse the repository at this point in the history
  • Loading branch information
tizianoGuadagnino committed Jan 7, 2025
1 parent df913ab commit c43fa21
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions cpp/kiss_icp/core/Preprocessing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
#include <Eigen/Geometry>
#include <algorithm>
#include <functional>
#include <iostream>
#include <vector>

namespace {
Expand All @@ -53,7 +52,6 @@ struct MotionDeskewer : public StubDeskewer {
: StubDeskewer(timestamps, relative_motion) {}

Eigen::Vector3d operator()(const Eigen::Vector3d &point, const size_t &idx) const {
std::cout << "I am deskwing" << std::endl;
const auto pose = Sophus::SE3d::exp((stamps_.at(idx) - mid_pose_timestamp) * motion_);
return pose * point;
}
Expand Down

0 comments on commit c43fa21

Please sign in to comment.