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.
frame_transformer::Config Struct Reference

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

#include <frame_transformer_config.hpp>

Collaboration diagram for frame_transformer::Config:
Collaboration graph

Public Attributes

std::string target_frame = "base_link"
 The target coordinate frame id to transform data into. More...
 
std::string message_type = "sensor_msgs/PointCloud2"
 Message type which will be transformed. More...
 
int queue_size = 1
 Queue size for publishers and subscribers. More...
 
int timeout = 0
 Timeout in ms for transform lookup. A value of 0 means lookup will occur once without blocking if it fails. More...
 

Friends

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

Detailed Description

Stuct containing the algorithm configuration values for frame_transformer.

Definition at line 27 of file frame_transformer_config.hpp.

Friends And Related Function Documentation

◆ operator<<

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

Definition at line 42 of file frame_transformer_config.hpp.

43 {
44 output << "frame_transformer::Config { " << std::endl
45 << "target_frame: " << c.target_frame << std::endl
46 << "message_type: " << c.message_type << std::endl
47 << "queue_size: " << c.queue_size << std::endl
48 << "timeout: " << c.timeout << std::endl
49 << "}" << std::endl;
50 return output;
51 }

Member Data Documentation

◆ message_type

std::string frame_transformer::Config::message_type = "sensor_msgs/PointCloud2"

◆ queue_size

int frame_transformer::Config::queue_size = 1

◆ target_frame

std::string frame_transformer::Config::target_frame = "base_link"

The target coordinate frame id to transform data into.

Definition at line 30 of file frame_transformer_config.hpp.

Referenced by frame_transformer::Node::Node(), frame_transformer::Node::handle_on_configure(), and frame_transformer::Transformer< T >::input_callback().

◆ timeout

int frame_transformer::Config::timeout = 0

Timeout in ms for transform lookup. A value of 0 means lookup will occur once without blocking if it fails.

Definition at line 39 of file frame_transformer_config.hpp.

Referenced by frame_transformer::Node::Node(), frame_transformer::Node::handle_on_configure(), and frame_transformer::Transformer< T >::input_callback().


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