Carma-platform v4.2.0
CARMA Platform is built on robot operating system (ROS) and utilizes open source software (OSS) that enables Cooperative Driving Automation (CDA) features to allow Automated Driving Systems to interact and cooperate with infrastructure and other vehicles through communication.
approximate_intersection::Config Struct Reference

Stuct containing the algorithm configuration values for approximate_intersection. More...

#include <config.hpp>

Collaboration diagram for approximate_intersection::Config:
Collaboration graph

Public Attributes

float32_t min_x = -1000
 Maximum x dimension. More...
 
float32_t max_x = 1000
 Maximum x dimension. More...
 
float32_t min_y = -1000
 Maximum y dimension. More...
 
float32_t max_y = 1000
 Maximum y dimension. More...
 
size_t cell_side_length = 100
 Cell size length. More...
 

Friends

std::ostream & operator<< (std::ostream &output, const Config &c)
 

Detailed Description

Stuct containing the algorithm configuration values for approximate_intersection.

Definition at line 28 of file config.hpp.

Friends And Related Function Documentation

◆ operator<<

std::ostream & operator<< ( std::ostream &  output,
const Config c 
)
friend

Definition at line 47 of file config.hpp.

48 {
49 output << "approximate_intersection::Config { " << std::endl
50 << "min_x: " << c.min_x << std::endl
51 << "max_x: " << c.max_x << std::endl
52 << "min_y: " << c.min_y << std::endl
53 << "max_y: " << c.max_y << std::endl
54 << "cell_side_length: " << c.cell_side_length << std::endl
55 << "}" << std::endl;
56 return output;
57 }

Member Data Documentation

◆ cell_side_length

size_t approximate_intersection::Config::cell_side_length = 100

◆ max_x

float32_t approximate_intersection::Config::max_x = 1000

Maximum x dimension.

Definition at line 35 of file config.hpp.

Referenced by approximate_intersection::LookupGrid< PointT >::LookupGrid(), and points_map_filter::Node::map_callback().

◆ max_y

float32_t approximate_intersection::Config::max_y = 1000

Maximum y dimension.

Definition at line 41 of file config.hpp.

Referenced by approximate_intersection::LookupGrid< PointT >::LookupGrid(), and points_map_filter::Node::map_callback().

◆ min_x

float32_t approximate_intersection::Config::min_x = -1000

Maximum x dimension.

Definition at line 32 of file config.hpp.

Referenced by approximate_intersection::LookupGrid< PointT >::LookupGrid(), and points_map_filter::Node::map_callback().

◆ min_y

float32_t approximate_intersection::Config::min_y = -1000

Maximum y dimension.

Definition at line 38 of file config.hpp.

Referenced by approximate_intersection::LookupGrid< PointT >::LookupGrid(), and points_map_filter::Node::map_callback().


The documentation for this struct was generated from the following file: