Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
deskew.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <Eigen/Dense>
4#include <cmath>
5#include <sensor_msgs/msg/point_cloud2.hpp>
6
8#include "rclcpp/rclcpp.hpp"
9#include "utils/cluster.hpp"
10#include "utils/lidar_point.hpp"
11
12class Deskew {
13public:
22 void deskew_point_cloud(sensor_msgs::msg::PointCloud2::SharedPtr& input_cloud,
23 const common_lib::structures::Velocities& vehicle_velocity) const;
24};
void deskew_point_cloud(sensor_msgs::msg::PointCloud2::SharedPtr &input_cloud, const common_lib::structures::Velocities &vehicle_velocity) const
deskews the point cloud, i.e.
Definition deskew.cpp:3