Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
perception.cpp
Go to the documentation of this file.
1#include <memory>
2#include <vector>
3
5
6int main(int argc, char** argv) {
7 rclcpp::init(argc, argv);
9 auto perception = std::make_shared<Perception>(params);
10 rclcpp::spin(perception); // Spin the perception node
11 rclcpp::shutdown();
12 return 0;
13}
static PerceptionParameters load_config()
Turns the parameters in the yaml file into PerceptionParameters class.
Definition main.py:1
Struct containing parameters and interfaces used in perception.