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.
|
Go to the source code of this file.
Namespaces | |
namespace | inlanecruising_plugin |
namespace | inlanecruising_plugin::log |
Functions | |
std::string | inlanecruising_plugin::log::basicPointToStream (lanelet::BasicPoint2d point) |
Helper function to convert a lanelet::BasicPoint2d to a string. More... | |
std::string | inlanecruising_plugin::log::pointSpeedPairToStream (PointSpeedPair point) |
Helper function to convert a PointSpeedPair to a string. More... | |
template<class T > | |
void | inlanecruising_plugin::log::printDebugPerLine (const std::vector< T > &values, std::function< std::string(T)> func) |
Print a RCLPP_DEBUG_STREAM for each value in values where the printed value is a string returned by func. More... | |
template<class T > | |
void | inlanecruising_plugin::log::printDebugPerLine (const std::vector< T > &values, std::string(*free_func)(T)) |
Print a RCLPP_DEBUG_STREAM for each value in values where the printed value is a string returned by free_func. More... | |
void | inlanecruising_plugin::log::printDoublesPerLineWithPrefix (const std::string &prefix, const std::vector< double > &values) |
Print a RCLPP_DEBUG_STREAM for each value in values where the printed value is << prefix << value. More... | |