MRPT  2.0.3
List of all members | Public Member Functions | Public Attributes
mrpt::tfest::TMatchingPairList Class Reference

Detailed Description

A list of TMatchingPair.

Definition at line 70 of file TMatchingPair.h.

#include <mrpt/tfest/TMatchingPair.h>

Inheritance diagram for mrpt::tfest::TMatchingPairList:

Public Member Functions

bool indexOtherMapHasCorrespondence (size_t idx) const
 Checks if the given index from the "other" map appears in the list. More...
 
void dumpToFile (const std::string &fileName) const
 Saves the correspondences to a text file. More...
 
void saveAsMATLABScript (const std::string &filName) const
 Saves the correspondences as a MATLAB script which draws them. More...
 
float overallSquareError (const mrpt::poses::CPose2D &q) const
 Computes the overall square error between the 2D points in the list of correspondences, given the 2D transformation "q"

\[ \sum\limits_i e_i \]

Where $ e_i $ are the elements of the square error vector as computed by computeSquareErrorVector. More...

 
float overallSquareErrorAndPoints (const mrpt::poses::CPose2D &q, std::vector< float > &xs, std::vector< float > &ys) const
 Computes the overall square error between the 2D points in the list of correspondences, given the 2D transformation "q", and return the transformed points as well. More...
 
void squareErrorVector (const mrpt::poses::CPose2D &q, std::vector< float > &out_sqErrs) const
 Returns a vector with the square error between each pair of correspondences in the list, given the 2D transformation "q" Each element $ e_i $ is the square distance between the "this" (global) point and the "other" (local) point transformed through "q":

\[ e_i = | x_{this} - q \oplus x_{other} |^2 \]

. More...

 
void squareErrorVector (const mrpt::poses::CPose2D &q, std::vector< float > &out_sqErrs, std::vector< float > &xs, std::vector< float > &ys) const
 Returns a vector with the square error between each pair of correspondences in the list and the transformed "other" (local) points, given the 2D transformation "q" Each element $ e_i $ is the square distance between the "this" (global) point and the "other" (local) point transformed through "q":

\[ e_i = | x_{this} - q \oplus x_{other} |^2 \]

. More...

 
bool contains (const TMatchingPair &p) const
 Test whether the given pair "p" is within the pairings. More...
 
void filterUniqueRobustPairs (const size_t num_elements_this_map, TMatchingPairList &out_filtered_list) const
 Creates a filtered list of pairings with those ones which have a single correspondence which coincides in both directions, i.e. More...
 

Public Attributes

elements
 STL member. More...
 

Member Function Documentation

◆ contains()

bool TMatchingPairList::contains ( const TMatchingPair p) const

Test whether the given pair "p" is within the pairings.

Definition at line 122 of file TMatchingPair.cpp.

◆ dumpToFile()

void TMatchingPairList::dumpToFile ( const std::string &  fileName) const

Saves the correspondences to a text file.

Definition at line 29 of file TMatchingPair.cpp.

References ASSERT_, and mrpt::format().

Here is the call graph for this function:

◆ filterUniqueRobustPairs()

void TMatchingPairList::filterUniqueRobustPairs ( const size_t  num_elements_this_map,
TMatchingPairList out_filtered_list 
) const

Creates a filtered list of pairings with those ones which have a single correspondence which coincides in both directions, i.e.

the best pairing of element i in map this is the best match for element j in map other, and viceversa

Definition at line 184 of file TMatchingPair.cpp.

Referenced by mrpt::maps::CPointsMap::determineMatching2D(), and mrpt::maps::CPointsMap::determineMatching3D().

Here is the caller graph for this function:

◆ indexOtherMapHasCorrespondence()

bool TMatchingPairList::indexOtherMapHasCorrespondence ( size_t  idx) const

Checks if the given index from the "other" map appears in the list.

Definition at line 73 of file TMatchingPair.cpp.

◆ overallSquareError()

float TMatchingPairList::overallSquareError ( const mrpt::poses::CPose2D q) const

Computes the overall square error between the 2D points in the list of correspondences, given the 2D transformation "q"

\[ \sum\limits_i e_i \]

Where $ e_i $ are the elements of the square error vector as computed by computeSquareErrorVector.

See also
squareErrorVector, overallSquareErrorAndPoints

Definition at line 104 of file TMatchingPair.cpp.

References mrpt::math::size().

Here is the call graph for this function:

◆ overallSquareErrorAndPoints()

float TMatchingPairList::overallSquareErrorAndPoints ( const mrpt::poses::CPose2D q,
std::vector< float > &  xs,
std::vector< float > &  ys 
) const

Computes the overall square error between the 2D points in the list of correspondences, given the 2D transformation "q", and return the transformed points as well.

\[ \sum\limits_i e_i \]

Where $ e_i $ are the elements of the square error vector as computed by computeSquareErrorVector

See also
squareErrorVector

Definition at line 111 of file TMatchingPair.cpp.

References mrpt::math::size().

Here is the call graph for this function:

◆ saveAsMATLABScript()

void TMatchingPairList::saveAsMATLABScript ( const std::string &  filName) const

Saves the correspondences as a MATLAB script which draws them.

Definition at line 42 of file TMatchingPair.cpp.

References mrpt::system::os::fclose(), mrpt::system::os::fopen(), and mrpt::system::os::fprintf().

Here is the call graph for this function:

◆ squareErrorVector() [1/2]

void TMatchingPairList::squareErrorVector ( const mrpt::poses::CPose2D q,
std::vector< float > &  out_sqErrs 
) const

Returns a vector with the square error between each pair of correspondences in the list, given the 2D transformation "q" Each element $ e_i $ is the square distance between the "this" (global) point and the "other" (local) point transformed through "q":

\[ e_i = | x_{this} - q \oplus x_{other} |^2 \]

.

See also
overallSquareError

Definition at line 132 of file TMatchingPair.cpp.

References mrpt::containers::begin(), mrpt::d2f(), mrpt::containers::end(), mrpt::poses::CPose2D::phi(), mrpt::math::size(), mrpt::square(), mrpt::poses::CPoseOrPoint< DERIVEDCLASS, DIM >::x(), and mrpt::poses::CPoseOrPoint< DERIVEDCLASS, DIM >::y().

Referenced by mrpt::slam::CICP::ICP_Method_LM().

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

◆ squareErrorVector() [2/2]

void TMatchingPairList::squareErrorVector ( const mrpt::poses::CPose2D q,
std::vector< float > &  out_sqErrs,
std::vector< float > &  xs,
std::vector< float > &  ys 
) const

Returns a vector with the square error between each pair of correspondences in the list and the transformed "other" (local) points, given the 2D transformation "q" Each element $ e_i $ is the square distance between the "this" (global) point and the "other" (local) point transformed through "q":

\[ e_i = | x_{this} - q \oplus x_{other} |^2 \]

.

See also
overallSquareError

Definition at line 157 of file TMatchingPair.cpp.

References mrpt::containers::begin(), mrpt::d2f(), mrpt::containers::end(), mrpt::poses::CPose2D::phi(), mrpt::math::size(), mrpt::square(), mrpt::poses::CPoseOrPoint< DERIVEDCLASS, DIM >::x(), and mrpt::poses::CPoseOrPoint< DERIVEDCLASS, DIM >::y().

Here is the call graph for this function:

Member Data Documentation

◆ elements

T std::vector< T >::elements
inherited

STL member.




Page generated by Doxygen 1.8.14 for MRPT 2.0.3 Git: 8e9e8af54 Wed May 13 17:41:24 2020 +0200 at miƩ may 13 17:55:54 CEST 2020