A list of image features using the structure TSimpleFeature for each feature - capable of KD-tree computations Users normally use directly the typedef's: TSimpleFeatureList & TSimpleFeaturefList.
Definition at line 94 of file TSimpleFeature.h.
#include <mrpt/vision/TSimpleFeature.h>
Public Types | |
typedef std::vector< FEATURE > | TFeatureVector |
typedef FEATURE | feature_t |
Public Member Functions | |
Utilities | |
const TFeatureVector & | getVector () const |
Returns a const ref to the actual std::vector<> container. More... | |
TFeatureID | getMaxID () const |
Returns the maximum ID of all features in the list, or 0 if it's empty. More... | |
const std::vector< size_t > & | getFirstIndexPerRowLUT () const |
Returns a vector with a LUT of the first feature index per row, to efficiently look for neighbors, etc. More... | |
std::vector< size_t > & | getFirstIndexPerRowLUT () |
mrpt::math::CMatrixBool & | getOccupiedSectionsMatrix () |
Get a ref to the occupation matrix: this is a user-defined matrix, which is not updated automatically by this class. More... | |
const mrpt::math::CMatrixBool & | getOccupiedSectionsMatrix () const |
getFeature*() methods for template-based access to feature list | |
TSimpleFeatureTraits< FEATURE >::coord_t | getFeatureX (size_t i) const |
TSimpleFeatureTraits< FEATURE >::coord_t | getFeatureY (size_t i) const |
TFeatureID | getFeatureID (size_t i) const |
float | getFeatureResponse (size_t i) const |
bool | isPointFeature (size_t i) const |
float | getScale (size_t i) const |
TFeatureTrackStatus | getTrackStatus (size_t i) |
void | setFeatureX (size_t i, typename TSimpleFeatureTraits< FEATURE >::coord_t x) |
void | setFeatureY (size_t i, typename TSimpleFeatureTraits< FEATURE >::coord_t y) |
void | setFeatureXf (size_t i, float x) |
void | setFeatureYf (size_t i, float y) |
void | setFeatureID (size_t i, TFeatureID id) |
void | setFeatureResponse (size_t i, float r) |
void | setScale (size_t i, float s) |
void | setTrackStatus (size_t i, TFeatureTrackStatus s) |
void | mark_as_outdated () const |
Private Attributes | |
TFeatureVector | m_feats |
The actual container with the list of features. More... | |
std::vector< size_t > | m_first_index_per_row |
A LUT of the first feature index per row, to efficiently look for neighbors, etc. More... | |
mrpt::math::CMatrixBool | m_occupied_sections |
Method and datatypes to emulate a STL container | |
typedef TFeatureVector::iterator | iterator |
typedef TFeatureVector::const_iterator | const_iterator |
typedef TFeatureVector::reverse_iterator | reverse_iterator |
typedef TFeatureVector::const_reverse_iterator | const_reverse_iterator |
iterator | begin () |
iterator | end () |
const_iterator | begin () const |
const_iterator | end () const |
reverse_iterator | rbegin () |
reverse_iterator | rend () |
const_reverse_iterator | rbegin () const |
const_reverse_iterator | rend () const |
iterator | erase (const iterator &it) |
bool | empty () const |
size_t | size () const |
void | clear () |
void | resize (size_t N) |
void | reserve (size_t N) |
void | push_back (const FEATURE &f) |
void | push_back_fast (const FEATURE &f) |
void | push_back_fast (const int x, const int y) |
FEATURE & | operator[] (const unsigned int index) |
const FEATURE & | operator[] (const unsigned int index) const |
FEATURE & | back () |
const FEATURE & | back () const |
FEATURE & | front () |
const FEATURE & | front () const |
typedef TFeatureVector::const_iterator mrpt::vision::TSimpleFeatureList_templ< FEATURE >::const_iterator |
Definition at line 132 of file TSimpleFeature.h.
typedef TFeatureVector::const_reverse_iterator mrpt::vision::TSimpleFeatureList_templ< FEATURE >::const_reverse_iterator |
Definition at line 135 of file TSimpleFeature.h.
typedef FEATURE mrpt::vision::TSimpleFeatureList_templ< FEATURE >::feature_t |
Definition at line 98 of file TSimpleFeature.h.
typedef TFeatureVector::iterator mrpt::vision::TSimpleFeatureList_templ< FEATURE >::iterator |
Definition at line 131 of file TSimpleFeature.h.
typedef TFeatureVector::reverse_iterator mrpt::vision::TSimpleFeatureList_templ< FEATURE >::reverse_iterator |
Definition at line 134 of file TSimpleFeature.h.
typedef std::vector<FEATURE> mrpt::vision::TSimpleFeatureList_templ< FEATURE >::TFeatureVector |
Definition at line 97 of file TSimpleFeature.h.
|
inline |
Definition at line 163 of file TSimpleFeature.h.
|
inline |
Definition at line 164 of file TSimpleFeature.h.
|
inline |
Definition at line 137 of file TSimpleFeature.h.
|
inline |
Definition at line 139 of file TSimpleFeature.h.
|
inline |
Definition at line 152 of file TSimpleFeature.h.
Referenced by mrpt::vision::CFeatureExtraction::detectFeatures_SSE2_FASTER10(), mrpt::vision::CFeatureExtraction::detectFeatures_SSE2_FASTER12(), and mrpt::vision::CFeatureExtraction::detectFeatures_SSE2_FASTER9().
|
inline |
Definition at line 149 of file TSimpleFeature.h.
Referenced by mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::getMaxID().
|
inline |
Definition at line 138 of file TSimpleFeature.h.
|
inline |
Definition at line 140 of file TSimpleFeature.h.
|
inline |
Definition at line 147 of file TSimpleFeature.h.
|
inline |
Definition at line 166 of file TSimpleFeature.h.
|
inline |
Definition at line 167 of file TSimpleFeature.h.
|
inline |
Definition at line 175 of file TSimpleFeature.h.
|
inline |
Definition at line 176 of file TSimpleFeature.h.
|
inline |
Definition at line 173 of file TSimpleFeature.h.
|
inline |
Definition at line 174 of file TSimpleFeature.h.
|
inline |
Returns a vector with a LUT of the first feature index per row, to efficiently look for neighbors, etc.
By default this vector is empty, so if a feature detector is used that doesn't fill this out, it will remain empty and useless.
Definition at line 119 of file TSimpleFeature.h.
|
inline |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Definition at line 121 of file TSimpleFeature.h.
|
inline |
Returns the maximum ID of all features in the list, or 0 if it's empty.
Definition at line 107 of file TSimpleFeature.h.
|
inline |
Get a ref to the occupation matrix: this is a user-defined matrix, which is not updated automatically by this class.
Definition at line 124 of file TSimpleFeature.h.
|
inline |
Definition at line 125 of file TSimpleFeature.h.
|
inline |
Definition at line 178 of file TSimpleFeature.h.
|
inline |
Definition at line 179 of file TSimpleFeature.h.
|
inline |
Returns a const ref to the actual std::vector<> container.
Definition at line 104 of file TSimpleFeature.h.
|
inline |
Definition at line 177 of file TSimpleFeature.h.
|
inline |
Definition at line 192 of file TSimpleFeature.h.
|
inline |
Definition at line 160 of file TSimpleFeature.h.
|
inline |
Definition at line 161 of file TSimpleFeature.h.
|
inline |
Definition at line 156 of file TSimpleFeature.h.
|
inline |
Definition at line 157 of file TSimpleFeature.h.
Referenced by faster_corner_detect_10(), faster_corner_detect_12(), and faster_corner_detect_9().
|
inline |
Definition at line 158 of file TSimpleFeature.h.
|
inline |
Definition at line 142 of file TSimpleFeature.h.
|
inline |
Definition at line 144 of file TSimpleFeature.h.
|
inline |
Definition at line 143 of file TSimpleFeature.h.
|
inline |
Definition at line 145 of file TSimpleFeature.h.
|
inline |
Definition at line 154 of file TSimpleFeature.h.
Referenced by faster_corner_detect_10(), faster_corner_detect_12(), and faster_corner_detect_9().
|
inline |
Definition at line 153 of file TSimpleFeature.h.
|
inline |
Definition at line 187 of file TSimpleFeature.h.
|
inline |
Definition at line 188 of file TSimpleFeature.h.
|
inline |
Definition at line 181 of file TSimpleFeature.h.
|
inline |
Definition at line 184 of file TSimpleFeature.h.
|
inline |
Definition at line 182 of file TSimpleFeature.h.
|
inline |
Definition at line 185 of file TSimpleFeature.h.
|
inline |
Definition at line 189 of file TSimpleFeature.h.
|
inline |
Definition at line 190 of file TSimpleFeature.h.
|
inline |
Definition at line 150 of file TSimpleFeature.h.
Referenced by faster_corner_detect_10(), faster_corner_detect_12(), and faster_corner_detect_9().
|
private |
The actual container with the list of features.
Definition at line 196 of file TSimpleFeature.h.
Referenced by mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::back(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::begin(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::clear(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::empty(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::end(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::erase(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::front(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::getFeatureID(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::getFeatureResponse(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::getFeatureX(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::getFeatureY(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::getMaxID(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::getScale(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::getTrackStatus(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::getVector(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::operator[](), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::push_back(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::push_back_fast(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::rbegin(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::rend(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::reserve(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::resize(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::setFeatureID(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::setFeatureResponse(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::setFeatureX(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::setFeatureXf(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::setFeatureY(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::setFeatureYf(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::setScale(), mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::setTrackStatus(), and mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::size().
|
private |
A LUT of the first feature index per row, to efficiently look for neighbors, etc.
Definition at line 197 of file TSimpleFeature.h.
Referenced by mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::clear(), and mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::getFirstIndexPerRowLUT().
|
private |
Definition at line 198 of file TSimpleFeature.h.
Referenced by mrpt::vision::TSimpleFeatureList_templ< TSimpleFeature >::getOccupiedSectionsMatrix().
Page generated by Doxygen 1.8.14 for MRPT 1.5.9 Git: 690a4699f Wed Apr 15 19:29:53 2020 +0200 at miƩ abr 15 19:30:12 CEST 2020 |