MRPT  2.0.0
List of all members | Public Types | Public Member Functions | Protected Attributes
mrpt::nav::ClearanceDiagram Class Reference

Detailed Description

Clearance information for one particular PTG and one set of obstacles.

Usage:

Definition at line 28 of file ClearanceDiagram.h.

#include <mrpt/nav/holonomic/ClearanceDiagram.h>

Public Types

using dist2clearance_t = std::map< double, double >
 [TPS_distance] => normalized_clearance_for_exactly_that_robot_pose More...
 

Public Member Functions

 ClearanceDiagram ()
 default ctor More...
 
void clear ()
 Reset to default, empty state. More...
 
void resize (size_t actual_num_paths, size_t decimated_num_paths)
 Initializes the container to allocate decimated_num_paths entries, as a decimated subset of a total of actual_num_paths paths. More...
 
bool empty () const
 
size_t get_actual_num_paths () const
 
size_t get_decimated_num_paths () const
 
double getClearance (uint16_t k, double TPS_query_distance, bool integrate_over_path) const
 Gets the clearance for path k and distance TPS_query_distance in one of two modes: More...
 
void renderAs3DObject (mrpt::opengl::CMesh &mesh, double min_x, double max_x, double min_y, double max_y, double cell_res, bool integrate_over_path) const
 
void readFromStream (mrpt::serialization::CArchive &in)
 
void writeToStream (mrpt::serialization::CArchive &out) const
 
dist2clearance_tget_path_clearance (size_t actual_k)
 
const dist2clearance_tget_path_clearance (size_t actual_k) const
 
dist2clearance_tget_path_clearance_decimated (size_t decim_k)
 
const dist2clearance_tget_path_clearance_decimated (size_t decim_k) const
 
size_t real_k_to_decimated_k (size_t k) const
 
size_t decimated_k_to_real_k (size_t k) const
 

Protected Attributes

std::vector< dist2clearance_tm_raw_clearances
 Container: [decimated_path_k][TPS_distance] => normalized_clearance_for_exactly_that_robot_pose. More...
 
size_t m_actual_num_paths
 
double m_k_a2d {.0}
 
double m_k_d2a {.0}
 

Member Typedef Documentation

◆ dist2clearance_t

using mrpt::nav::ClearanceDiagram::dist2clearance_t = std::map<double, double>

[TPS_distance] => normalized_clearance_for_exactly_that_robot_pose

Definition at line 62 of file ClearanceDiagram.h.

Constructor & Destructor Documentation

◆ ClearanceDiagram()

ClearanceDiagram::ClearanceDiagram ( )
default

default ctor

Member Function Documentation

◆ clear()

void ClearanceDiagram::clear ( )

Reset to default, empty state.

Definition at line 173 of file ClearanceDiagram.cpp.

References m_actual_num_paths, m_k_a2d, m_k_d2a, and m_raw_clearances.

◆ decimated_k_to_real_k()

size_t mrpt::nav::ClearanceDiagram::decimated_k_to_real_k ( size_t  k) const

Definition at line 123 of file ClearanceDiagram.cpp.

References ASSERT_, and mrpt::round().

Referenced by mrpt::nav::CParameterizedTrajectoryGenerator::initClearanceDiagram(), and mrpt::nav::CParameterizedTrajectoryGenerator::updateClearance().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ empty()

bool mrpt::nav::ClearanceDiagram::empty ( ) const
inline

Definition at line 39 of file ClearanceDiagram.h.

References m_raw_clearances.

Referenced by getClearance().

Here is the caller graph for this function:

◆ get_actual_num_paths()

size_t mrpt::nav::ClearanceDiagram::get_actual_num_paths ( ) const
inline

Definition at line 40 of file ClearanceDiagram.h.

References m_actual_num_paths.

Referenced by mrpt::nav::CParameterizedTrajectoryGenerator::updateClearance().

Here is the caller graph for this function:

◆ get_decimated_num_paths()

size_t mrpt::nav::ClearanceDiagram::get_decimated_num_paths ( ) const
inline

Definition at line 41 of file ClearanceDiagram.h.

References m_raw_clearances.

Referenced by mrpt::nav::CParameterizedTrajectoryGenerator::updateClearance().

Here is the caller graph for this function:

◆ get_path_clearance() [1/2]

ClearanceDiagram::dist2clearance_t & ClearanceDiagram::get_path_clearance ( size_t  actual_k)

Definition at line 103 of file ClearanceDiagram.cpp.

References m_raw_clearances, and real_k_to_decimated_k().

Here is the call graph for this function:

◆ get_path_clearance() [2/2]

const ClearanceDiagram::dist2clearance_t & ClearanceDiagram::get_path_clearance ( size_t  actual_k) const

Definition at line 109 of file ClearanceDiagram.cpp.

References m_raw_clearances, and real_k_to_decimated_k().

Here is the call graph for this function:

◆ get_path_clearance_decimated() [1/2]

dist2clearance_t& mrpt::nav::ClearanceDiagram::get_path_clearance_decimated ( size_t  decim_k)
inline

Definition at line 66 of file ClearanceDiagram.h.

References m_raw_clearances.

Referenced by mrpt::nav::CParameterizedTrajectoryGenerator::initClearanceDiagram(), and mrpt::nav::CParameterizedTrajectoryGenerator::updateClearance().

Here is the caller graph for this function:

◆ get_path_clearance_decimated() [2/2]

const dist2clearance_t& mrpt::nav::ClearanceDiagram::get_path_clearance_decimated ( size_t  decim_k) const
inline

Definition at line 70 of file ClearanceDiagram.h.

References m_raw_clearances.

◆ getClearance()

double ClearanceDiagram::getClearance ( uint16_t  k,
double  TPS_query_distance,
bool  integrate_over_path 
) const

Gets the clearance for path k and distance TPS_query_distance in one of two modes:

  • [integrate_over_path=false] clearance from that specific spot, or
  • [integrate_over_path=true] average clearance over the path from the origin to that specific spot.

Definition at line 131 of file ClearanceDiagram.cpp.

References ASSERT_BELOW_, empty(), m_actual_num_paths, m_raw_clearances, and real_k_to_decimated_k().

Referenced by mrpt::nav::CAbstractPTGBasedReactive::calc_move_candidate_scores(), and renderAs3DObject().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ readFromStream()

void mrpt::nav::ClearanceDiagram::readFromStream ( mrpt::serialization::CArchive in)

Definition at line 74 of file ClearanceDiagram.cpp.

References MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION, mrpt::serialization::CArchive::ReadAsAndCastTo(), and resize().

Here is the call graph for this function:

◆ real_k_to_decimated_k()

size_t mrpt::nav::ClearanceDiagram::real_k_to_decimated_k ( size_t  k) const

Definition at line 115 of file ClearanceDiagram.cpp.

References ASSERT_, and mrpt::round().

Referenced by get_path_clearance(), and getClearance().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ renderAs3DObject()

void ClearanceDiagram::renderAs3DObject ( mrpt::opengl::CMesh mesh,
double  min_x,
double  max_x,
double  min_y,
double  max_y,
double  cell_res,
bool  integrate_over_path 
) const

◆ resize()

void mrpt::nav::ClearanceDiagram::resize ( size_t  actual_num_paths,
size_t  decimated_num_paths 
)

Initializes the container to allocate decimated_num_paths entries, as a decimated subset of a total of actual_num_paths paths.

Definition at line 180 of file ClearanceDiagram.cpp.

References ASSERT_ABOVEEQ_, and mrpt::containers::clear().

Referenced by mrpt::nav::CParameterizedTrajectoryGenerator::initClearanceDiagram().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ writeToStream()

void mrpt::nav::ClearanceDiagram::writeToStream ( mrpt::serialization::CArchive out) const

Definition at line 93 of file ClearanceDiagram.cpp.

References out.

Member Data Documentation

◆ m_actual_num_paths

size_t mrpt::nav::ClearanceDiagram::m_actual_num_paths
protected
Initial value:
{
0}

Definition at line 84 of file ClearanceDiagram.h.

Referenced by clear(), get_actual_num_paths(), getClearance(), and renderAs3DObject().

◆ m_k_a2d

double mrpt::nav::ClearanceDiagram::m_k_a2d {.0}
protected

Definition at line 87 of file ClearanceDiagram.h.

Referenced by clear().

◆ m_k_d2a

double mrpt::nav::ClearanceDiagram::m_k_d2a {.0}
protected

Definition at line 87 of file ClearanceDiagram.h.

Referenced by clear().

◆ m_raw_clearances

std::vector<dist2clearance_t> mrpt::nav::ClearanceDiagram::m_raw_clearances
protected

Container: [decimated_path_k][TPS_distance] => normalized_clearance_for_exactly_that_robot_pose.

Definition at line 82 of file ClearanceDiagram.h.

Referenced by clear(), empty(), get_decimated_num_paths(), get_path_clearance(), get_path_clearance_decimated(), getClearance(), and renderAs3DObject().




Page generated by Doxygen 1.8.14 for MRPT 2.0.0 Git: b38439d21 Tue Mar 31 19:58:06 2020 +0200 at miƩ abr 1 00:50:30 CEST 2020