A generic 2D feature from an image, extracted with CFeatureExtraction Each feature may have one or more descriptors (see descriptors), in addition to an image patch.
The (Euclidean) distance between descriptors in a pair of features can be computed with descriptorDistanceTo, while the similarity of the patches is given by patchCorrelationTo.
Definition at line 53 of file CFeature.h.
#include <mrpt/vision/CFeature.h>
Classes | |
struct | TDescriptors |
All the possible descriptors this feature may have. More... | |
Public Member Functions | |
void * | operator new (size_t size) |
void * | operator new[] (size_t size) |
void | operator delete (void *ptr) noexcept |
void | operator delete[] (void *ptr) noexcept |
void | operator delete (void *memory, void *ptr) noexcept |
void * | operator new (size_t size, const std::nothrow_t &) noexcept |
void | operator delete (void *ptr, const std::nothrow_t &) noexcept |
bool | isPointFeature () const |
a HASH table of descriptors More... | |
bool | getFirstDescriptorAsMatrix (mrpt::math::CMatrixFloat &desc) const |
Return the first found descriptor, as a matrix. More... | |
float | patchCorrelationTo (const CFeature &oFeature) const |
Computes the normalized cross-correlation between the patches of this and another feature (normalized in the range [0,1], such as 0=best, 1=worst). More... | |
float | descriptorDistanceTo (const CFeature &oFeature, TDescriptorType descriptorToUse=descAny, bool normalize_distances=true) const |
Computes the Euclidean Distance between this feature's and other feature's descriptors, using the given descriptor or the first present one. More... | |
float | descriptorSIFTDistanceTo (const CFeature &oFeature, bool normalize_distances=true) const |
Computes the Euclidean Distance between "this" and the "other" descriptors. More... | |
float | descriptorSURFDistanceTo (const CFeature &oFeature, bool normalize_distances=true) const |
Computes the Euclidean Distance between "this" and the "other" descriptors. More... | |
float | descriptorSpinImgDistanceTo (const CFeature &oFeature, bool normalize_distances=true) const |
Computes the Euclidean Distance between "this" and the "other" descriptors. More... | |
float | descriptorPolarImgDistanceTo (const CFeature &oFeature, float &minDistAngle, bool normalize_distances=true) const |
Returns the minimum Euclidean Distance between "this" and the "other" polar image descriptor, for the best shift in orientation. More... | |
float | descriptorLogPolarImgDistanceTo (const CFeature &oFeature, float &minDistAngle, bool normalize_distances=true) const |
Returns the minimum Euclidean Distance between "this" and the "other" log-polar image descriptor, for the best shift in orientation. More... | |
uint8_t | descriptorORBDistanceTo (const CFeature &oFeature) const |
Computes the Hamming distance "this" and the "other" descriptor ORB descriptor. More... | |
float | descriptorBLDDistanceTo (const CFeature &oFeature, bool normalize_distances=true) const |
Computes the Euclidean Distance between "this" and the "other" descriptors. More... | |
float | descriptorLATCHDistanceTo (const CFeature &oFeature, bool normalize_distances=true) const |
Computes the Euclidean Distance between "this" and the "other" descriptors. More... | |
void | saveToTextFile (const std::string &filename, bool APPEND=false) |
Save the feature to a text file in this format: "%% Dump of mrpt::vision::CFeatureList. Each line format is:\n" "%% ID TYPE X Y ORIENTATION SCALE TRACK_STATUS RESPONSE HAS_SIFT
[SIFT] HAS_SURF [SURF] HAS_MULTI [MULTI_i] HAS_ORB [ORB]" "%% |---------------------- feature ------------------|
|---------------------- descriptors ------------------------|" "%% with:\n" "%% TYPE : The used detector: 0:KLT, 1: Harris, 2: BCD, 3: SIFT, 4:
SURF, 5: Beacon, 6: FAST, 7: ORB\n" "%% HAS_* : 1 if a descriptor of that type is associated to the feature. More... | |
TFeatureType | get_type () const |
Get the type of the feature. More... | |
void | dumpToTextStream (std::ostream &out) const |
Dump feature information into a text stream. More... | |
void | dumpToConsole () const |
CFeature () | |
Constructor. More... | |
virtual | ~CFeature () |
Virtual destructor. More... | |
virtual mxArray * | writeToMatlab () const |
Introduces a pure virtual method responsible for writing to a mxArray Matlab object, typically a MATLAB struct whose contents are documented in each derived class. More... | |
Static Public Member Functions | |
static void * | operator new (size_t size, void *ptr) |
Public Attributes | |
float | x |
float | y |
Coordinates in the image. More... | |
TFeatureID | ID |
ID of the feature. More... | |
mrpt::img::CImage | patch |
A patch of the image surrounding the feature. More... | |
uint16_t | patchSize |
Size of the patch (patchSize x patchSize) (it must. More... | |
TFeatureType | type |
be an odd number) More... | |
TFeatureTrackStatus | track_status |
featKLT, featHarris, featSURF, featBeacon More... | |
float | response |
process (old name: KLT_status) More... | |
float | orientation |
KLT_val) More... | |
float | scale |
Feature scale into the scale space. More... | |
uint8_t | user_flags |
A field for any other flags needed by the user. More... | |
uint16_t | nTimesSeen |
(this has not a predefined meaning) More... | |
uint16_t | nTimesNotSeen |
of images. More... | |
uint16_t | nTimesLastSeen |
sequence of images. More... | |
float | x2 [2] |
last time. More... | |
float | y2 [2] |
Coordinates for a LSD Detector to represent a line. More... | |
double | depth |
The estimated depth in 3D of this feature wrt the camera. More... | |
double | initialDepth |
in the current frame More... | |
mrpt::math::TPoint3D | p3D |
camera that took its image More... | |
std::deque< double > | multiScales |
A set of scales where the. More... | |
std::deque< std::vector< double > > | multiOrientations |
multi-resolution descriptor has been computed More... | |
std::deque< std::vector< std::vector< int32_t > > > | multiHashCoeffs |
orientations (there is a vector of orientations for each scale) More... | |
struct mrpt::vision::CFeature::TDescriptors | descriptors |
Protected Member Functions | |
CSerializable virtual methods | |
uint8_t | serializeGetVersion () const override |
Must return the current versioning number of the object. More... | |
void | serializeTo (mrpt::serialization::CArchive &out) const override |
Pure virtual method for writing (serializing) to an abstract archive. More... | |
void | serializeFrom (mrpt::serialization::CArchive &in, uint8_t serial_version) override |
Pure virtual method for reading (deserializing) from an abstract archive. More... | |
Static Protected Member Functions | |
static float | internal_distanceBetweenPolarImages (const mrpt::math::CMatrix &desc1, const mrpt::math::CMatrix &desc2, float &minDistAngle, bool normalize_distances, bool dont_shift_angle) |
Internal function used by "descriptorLogPolarImgDistanceTo" and "descriptorPolarImgDistanceTo". More... | |
Friends | |
class | CFeatureList |
class | CMatchedFeatureList |
RTTI stuff | |
using | Ptr = std::shared_ptr< CFeature > |
using | ConstPtr = std::shared_ptr< const CFeature > |
using | UniquePtr = std::unique_ptr< CFeature > |
using | ConstUniquePtr = std::unique_ptr< const CFeature > |
static mrpt::rtti::CLASSINIT | _init_CFeature |
static const mrpt::rtti::TRuntimeClassId | runtimeClassId |
static constexpr const char * | className = "CFeature" |
static const mrpt::rtti::TRuntimeClassId * | _GetBaseClass () |
static constexpr auto | getClassName () |
static const mrpt::rtti::TRuntimeClassId & | GetRuntimeClassIdStatic () |
static mrpt::rtti::CObject * | CreateObject () |
template<typename... Args> | |
static Ptr | Create (Args &&... args) |
template<typename... Args> | |
static UniquePtr | CreateUnique (Args &&... args) |
virtual const mrpt::rtti::TRuntimeClassId * | GetRuntimeClass () const override |
Returns information about the class of an object in runtime. More... | |
virtual mrpt::rtti::CObject * | clone () const override |
Returns a deep copy (clone) of the object, indepently of its class. More... | |
using mrpt::vision::CFeature::ConstPtr = std::shared_ptr<const CFeature > |
Definition at line 60 of file CFeature.h.
using mrpt::vision::CFeature::ConstUniquePtr = std::unique_ptr<const CFeature > |
Definition at line 60 of file CFeature.h.
using mrpt::vision::CFeature::Ptr = std::shared_ptr< CFeature > |
A type for the associated smart pointer
Definition at line 60 of file CFeature.h.
using mrpt::vision::CFeature::UniquePtr = std::unique_ptr< CFeature > |
Definition at line 60 of file CFeature.h.
CFeature::CFeature | ( | ) |
Constructor.
Definition at line 456 of file CFeature.cpp.
|
inlinevirtual |
Virtual destructor.
Definition at line 289 of file CFeature.h.
|
staticprotected |
|
overridevirtual |
Returns a deep copy (clone) of the object, indepently of its class.
Implements mrpt::rtti::CObject.
|
inlinestatic |
Definition at line 60 of file CFeature.h.
|
static |
|
inlinestatic |
Definition at line 60 of file CFeature.h.
float CFeature::descriptorBLDDistanceTo | ( | const CFeature & | oFeature, |
bool | normalize_distances = true |
||
) | const |
Computes the Euclidean Distance between "this" and the "other" descriptors.
Definition at line 875 of file CFeature.cpp.
References ASSERT_, mrpt::vision::CFeature::TDescriptors::BLD, descriptors, and mrpt::square().
Referenced by descriptorDistanceTo().
float CFeature::descriptorDistanceTo | ( | const CFeature & | oFeature, |
TDescriptorType | descriptorToUse = descAny , |
||
bool | normalize_distances = true |
||
) | const |
Computes the Euclidean Distance between this feature's and other feature's descriptors, using the given descriptor or the first present one.
Definition at line 523 of file CFeature.cpp.
References mrpt::vision::descAny, mrpt::vision::descBLD, mrpt::vision::descLATCH, mrpt::vision::descLogPolarImages, mrpt::vision::descORB, mrpt::vision::descPolarImages, descriptorBLDDistanceTo(), descriptorLATCHDistanceTo(), descriptorLogPolarImgDistanceTo(), descriptorORBDistanceTo(), descriptorPolarImgDistanceTo(), descriptors, descriptorSIFTDistanceTo(), descriptorSpinImgDistanceTo(), descriptorSURFDistanceTo(), mrpt::vision::descSIFT, mrpt::vision::descSpinImages, mrpt::vision::descSURF, mrpt::vision::CFeature::TDescriptors::hasDescriptorLogPolarImg(), mrpt::vision::CFeature::TDescriptors::hasDescriptorPolarImg(), mrpt::vision::CFeature::TDescriptors::hasDescriptorSIFT(), mrpt::vision::CFeature::TDescriptors::hasDescriptorSpinImg(), MRPT_END, MRPT_START, THROW_EXCEPTION, and THROW_EXCEPTION_FMT.
float CFeature::descriptorLATCHDistanceTo | ( | const CFeature & | oFeature, |
bool | normalize_distances = true |
||
) | const |
Computes the Euclidean Distance between "this" and the "other" descriptors.
Definition at line 900 of file CFeature.cpp.
References ASSERT_, descriptors, mrpt::vision::CFeature::TDescriptors::LATCH, and mrpt::square().
Referenced by descriptorDistanceTo().
float CFeature::descriptorLogPolarImgDistanceTo | ( | const CFeature & | oFeature, |
float & | minDistAngle, | ||
bool | normalize_distances = true |
||
) | const |
Returns the minimum Euclidean Distance between "this" and the "other" log-polar image descriptor, for the best shift in orientation.
oFeature | The other feature to compare with. |
minDistAngle | The placeholder for the angle at which the smallest distance is found. |
Definition at line 816 of file CFeature.cpp.
References ASSERT_, descriptors, mrpt::vision::CFeature::TDescriptors::hasDescriptorLogPolarImg(), internal_distanceBetweenPolarImages(), mrpt::vision::CFeature::TDescriptors::LogPolarImg, MRPT_END, MRPT_START, and mrpt::vision::CFeature::TDescriptors::polarImgsNoRotation.
Referenced by descriptorDistanceTo().
Computes the Hamming distance "this" and the "other" descriptor ORB descriptor.
Definition at line 846 of file CFeature.cpp.
References ASSERT_, descriptors, mrpt::math::distance(), and mrpt::vision::CFeature::TDescriptors::ORB.
Referenced by descriptorDistanceTo().
float CFeature::descriptorPolarImgDistanceTo | ( | const CFeature & | oFeature, |
float & | minDistAngle, | ||
bool | normalize_distances = true |
||
) | const |
Returns the minimum Euclidean Distance between "this" and the "other" polar image descriptor, for the best shift in orientation.
oFeature | The other feature to compare with. |
minDistAngle | The placeholder for the angle at which the smallest distance is found. |
Definition at line 790 of file CFeature.cpp.
References ASSERT_, descriptors, mrpt::vision::CFeature::TDescriptors::hasDescriptorPolarImg(), internal_distanceBetweenPolarImages(), MRPT_END, MRPT_START, mrpt::vision::CFeature::TDescriptors::PolarImg, and mrpt::vision::CFeature::TDescriptors::polarImgsNoRotation.
Referenced by descriptorDistanceTo().
float CFeature::descriptorSIFTDistanceTo | ( | const CFeature & | oFeature, |
bool | normalize_distances = true |
||
) | const |
Computes the Euclidean Distance between "this" and the "other" descriptors.
Definition at line 593 of file CFeature.cpp.
References ASSERT_, descriptors, mrpt::vision::CFeature::TDescriptors::hasDescriptorSIFT(), mrpt::vision::CFeature::TDescriptors::SIFT, and mrpt::square().
Referenced by descriptorDistanceTo().
float CFeature::descriptorSpinImgDistanceTo | ( | const CFeature & | oFeature, |
bool | normalize_distances = true |
||
) | const |
Computes the Euclidean Distance between "this" and the "other" descriptors.
Definition at line 645 of file CFeature.cpp.
References ASSERT_, descriptors, mrpt::vision::CFeature::TDescriptors::hasDescriptorSpinImg(), mrpt::vision::CFeature::TDescriptors::SpinImg, and mrpt::square().
Referenced by descriptorDistanceTo().
float CFeature::descriptorSURFDistanceTo | ( | const CFeature & | oFeature, |
bool | normalize_distances = true |
||
) | const |
Computes the Euclidean Distance between "this" and the "other" descriptors.
Definition at line 618 of file CFeature.cpp.
References ASSERT_, descriptors, mrpt::square(), and mrpt::vision::CFeature::TDescriptors::SURF.
Referenced by descriptorDistanceTo().
void CFeature::dumpToConsole | ( | ) | const |
Definition at line 399 of file CFeature.cpp.
void CFeature::dumpToTextStream | ( | std::ostream & | out | ) | const |
Dump feature information into a text stream.
Definition at line 257 of file CFeature.cpp.
References mrpt::format().
|
inlineinherited |
Returns a copy of the object, indepently of its class, as a smart pointer (the newly created object will exist as long as any copy of this smart pointer).
Definition at line 169 of file CObject.h.
References mrpt::rtti::CObject::clone().
Referenced by mrpt::obs::CRawlog::addActions(), and mrpt::obs::CRawlog::addObservations().
|
inline |
Get the type of the feature.
Definition at line 278 of file CFeature.h.
Referenced by saveToTextFile().
|
inlinestaticconstexpr |
Definition at line 60 of file CFeature.h.
bool CFeature::getFirstDescriptorAsMatrix | ( | mrpt::math::CMatrixFloat & | desc | ) | const |
Return the first found descriptor, as a matrix.
Definition at line 1449 of file CFeature.cpp.
References mrpt::vision::CFeature::TDescriptors::BLD, descriptors, mrpt::vision::CFeature::TDescriptors::hasDescriptorLogPolarImg(), mrpt::vision::CFeature::TDescriptors::hasDescriptorPolarImg(), mrpt::vision::CFeature::TDescriptors::hasDescriptorSIFT(), mrpt::vision::CFeature::TDescriptors::hasDescriptorSpinImg(), mrpt::vision::CFeature::TDescriptors::LATCH, mrpt::vision::CFeature::TDescriptors::LogPolarImg, mrpt::vision::CFeature::TDescriptors::PolarImg, mrpt::vision::CFeature::TDescriptors::SIFT, mrpt::vision::CFeature::TDescriptors::SpinImg, mrpt::vision::CFeature::TDescriptors::SpinImg_range_rows, and mrpt::vision::CFeature::TDescriptors::SURF.
|
overridevirtual |
Returns information about the class of an object in runtime.
Reimplemented from mrpt::serialization::CSerializable.
|
static |
|
staticprotected |
Internal function used by "descriptorLogPolarImgDistanceTo" and "descriptorPolarImgDistanceTo".
Definition at line 672 of file CFeature.cpp.
References M_2PI, mrpt::math::meanAndStd(), MRPT_END, MRPT_START, mrpt::square(), and win.
Referenced by descriptorLogPolarImgDistanceTo(), and descriptorPolarImgDistanceTo().
bool CFeature::isPointFeature | ( | ) | const |
a HASH table of descriptors
Return false only for Blob detectors (SIFT, SURF)
Definition at line 496 of file CFeature.cpp.
References mrpt::vision::featSIFT, and mrpt::vision::featSURF.
Definition at line 60 of file CFeature.h.
Definition at line 60 of file CFeature.h.
Definition at line 60 of file CFeature.h.
Definition at line 60 of file CFeature.h.
|
inline |
Definition at line 60 of file CFeature.h.
|
inlinenoexcept |
Definition at line 60 of file CFeature.h.
Definition at line 60 of file CFeature.h.
|
inline |
Definition at line 60 of file CFeature.h.
float CFeature::patchCorrelationTo | ( | const CFeature & | oFeature | ) | const |
Computes the normalized cross-correlation between the patches of this and another feature (normalized in the range [0,1], such as 0=best, 1=worst).
Definition at line 504 of file CFeature.cpp.
References ASSERT_, mrpt::img::CImage::cross_correlation(), mrpt::img::CImage::getHeight(), mrpt::img::CImage::getWidth(), MRPT_END, MRPT_START, and patch.
void CFeature::saveToTextFile | ( | const std::string & | filename, |
bool | APPEND = false |
||
) |
Save the feature to a text file in this format: "%% Dump of mrpt::vision::CFeatureList. Each line format is:\n" "%% ID TYPE X Y ORIENTATION SCALE TRACK_STATUS RESPONSE HAS_SIFT [SIFT] HAS_SURF [SURF] HAS_MULTI [MULTI_i] HAS_ORB [ORB]" "%% |---------------------- feature ------------------| |---------------------- descriptors ------------------------|" "%% with:\n" "%% TYPE : The used detector: 0:KLT, 1: Harris, 2: BCD, 3: SIFT, 4: SURF, 5: Beacon, 6: FAST, 7: ORB\n" "%% HAS_* : 1 if a descriptor of that type is associated to the feature.
" "%% SIFT : Present if HAS_SIFT=1: N DESC_0 ... DESC_N-1" "%% SURF : Present if HAS_SURF=1: N DESC_0 ... DESC_N-1" "%% MULTI : Present if HAS_MULTI=1: SCALE ORI N DESC_0 ... DESC_N-1" "%% ORB : Present if HAS_ORB=1: DESC_0 ... DESC_31 "%%--------------------------------------------------------------------------—\n");
Definition at line 926 of file CFeature.cpp.
References mrpt::vision::CFeature::TDescriptors::BLD, descriptors, get_type(), mrpt::vision::CFeature::TDescriptors::hasDescriptorMultiSIFT(), mrpt::vision::CFeature::TDescriptors::hasDescriptorSIFT(), ID, mrpt::vision::CFeature::TDescriptors::LATCH, MRPT_END, MRPT_START, multiOrientations, multiScales, mrpt::vision::CFeature::TDescriptors::multiSIFTDescriptors, mrpt::vision::CFeature::TDescriptors::ORB, orientation, response, mrpt::vision::CFeature::TDescriptors::SIFT, mrpt::vision::CFeature::TDescriptors::SURF, THROW_EXCEPTION, and track_status.
|
overrideprotectedvirtual |
Pure virtual method for reading (deserializing) from an abstract archive.
Users don't call this method directly. Instead, use stream >> object;
.
in | The input binary stream where the object data must read from. |
version | The version of the object stored in the stream: use this version number in your code to know how to read the incoming data. |
std::exception | On any I/O error |
Implements mrpt::serialization::CSerializable.
Definition at line 417 of file CFeature.cpp.
References MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION.
|
overrideprotectedvirtual |
Must return the current versioning number of the object.
Start in zero for new classes, and increments each time there is a change in the stored format.
Implements mrpt::serialization::CSerializable.
Definition at line 400 of file CFeature.cpp.
|
overrideprotectedvirtual |
Pure virtual method for writing (serializing) to an abstract archive.
Users don't call this method directly. Instead, use stream << object;
.
std::exception | On any I/O error |
Implements mrpt::serialization::CSerializable.
Definition at line 401 of file CFeature.cpp.
|
inlinevirtualinherited |
Introduces a pure virtual method responsible for writing to a mxArray
Matlab object, typically a MATLAB struct
whose contents are documented in each derived class.
mxArray
(caller is responsible of memory freeing) or nullptr is class does not support conversion to MATLAB. Definition at line 70 of file CSerializable.h.
|
friend |
Definition at line 57 of file CFeature.h.
|
friend |
Definition at line 58 of file CFeature.h.
|
staticprotected |
Definition at line 60 of file CFeature.h.
|
staticconstexpr |
Definition at line 60 of file CFeature.h.
double mrpt::vision::CFeature::depth |
The estimated depth in 3D of this feature wrt the camera.
Definition at line 88 of file CFeature.h.
struct mrpt::vision::CFeature::TDescriptors mrpt::vision::CFeature::descriptors |
Referenced by descriptorBLDDistanceTo(), descriptorDistanceTo(), descriptorLATCHDistanceTo(), descriptorLogPolarImgDistanceTo(), descriptorORBDistanceTo(), descriptorPolarImgDistanceTo(), descriptorSIFTDistanceTo(), descriptorSpinImgDistanceTo(), descriptorSURFDistanceTo(), getFirstDescriptorAsMatrix(), mrpt::vision::CFeatureList::loadFromTextFile(), and saveToTextFile().
TFeatureID mrpt::vision::CFeature::ID |
ID of the feature.
Definition at line 64 of file CFeature.h.
Referenced by mrpt::vision::CFeatureList::getByID(), mrpt::vision::CFeatureList::getMaxID(), mrpt::vision::CFeatureList::loadFromTextFile(), and saveToTextFile().
double mrpt::vision::CFeature::initialDepth |
in the current frame
The estimated depth in 3D of this feature wrt the
Definition at line 90 of file CFeature.h.
std::deque<std::vector<std::vector<int32_t> > > mrpt::vision::CFeature::multiHashCoeffs |
orientations (there is a vector of orientations for each scale)
A set of vectors containing the coefficients for
Definition at line 103 of file CFeature.h.
std::deque<std::vector<double> > mrpt::vision::CFeature::multiOrientations |
multi-resolution descriptor has been computed
A vector of main
Definition at line 97 of file CFeature.h.
Referenced by saveToTextFile().
std::deque<double> mrpt::vision::CFeature::multiScales |
A set of scales where the.
Definition at line 94 of file CFeature.h.
Referenced by saveToTextFile().
uint16_t mrpt::vision::CFeature::nTimesLastSeen |
sequence of images.
Number of frames since it was seen for the
Definition at line 82 of file CFeature.h.
uint16_t mrpt::vision::CFeature::nTimesNotSeen |
uint16_t mrpt::vision::CFeature::nTimesSeen |
(this has not a predefined meaning)
Number of frames it has been seen in a sequence
Definition at line 78 of file CFeature.h.
float mrpt::vision::CFeature::orientation |
KLT_val)
Main orientation of the feature
Definition at line 74 of file CFeature.h.
Referenced by mrpt::vision::CFeatureList::loadFromTextFile(), and saveToTextFile().
mrpt::math::TPoint3D mrpt::vision::CFeature::p3D |
camera that took its image
The estimated 3D point of this feature wrt its camera
Definition at line 93 of file CFeature.h.
mrpt::img::CImage mrpt::vision::CFeature::patch |
A patch of the image surrounding the feature.
Definition at line 65 of file CFeature.h.
Referenced by patchCorrelationTo(), and mrpt::vision::detail::trackFeatures_updatePatch< CFeatureList >().
uint16_t mrpt::vision::CFeature::patchSize |
Size of the patch (patchSize x patchSize) (it must.
Definition at line 66 of file CFeature.h.
float mrpt::vision::CFeature::response |
process (old name: KLT_status)
A measure of the "goodness" of the feature (old name:
Definition at line 72 of file CFeature.h.
Referenced by mrpt::vision::CFeatureList::loadFromTextFile(), saveToTextFile(), and mrpt::vision::detail::trackFeatures_checkResponses< CFeatureList >().
|
staticprotected |
Definition at line 60 of file CFeature.h.
float mrpt::vision::CFeature::scale |
Feature scale into the scale space.
Definition at line 75 of file CFeature.h.
Referenced by mrpt::vision::CFeatureList::loadFromTextFile().
TFeatureTrackStatus mrpt::vision::CFeature::track_status |
featKLT, featHarris, featSURF, featBeacon
Status of the feature tracking
Definition at line 70 of file CFeature.h.
Referenced by mrpt::vision::CFeatureList::loadFromTextFile(), saveToTextFile(), mrpt::vision::detail::trackFeatures_checkResponses< CFeatureList >(), and mrpt::vision::detail::trackFeatures_updatePatch< CFeatureList >().
TFeatureType mrpt::vision::CFeature::type |
be an odd number)
Type of the feature: featNotDefined, featSIFT,
Definition at line 68 of file CFeature.h.
Referenced by mrpt::vision::CFeatureList::loadFromTextFile().
uint8_t mrpt::vision::CFeature::user_flags |
A field for any other flags needed by the user.
Definition at line 76 of file CFeature.h.
float mrpt::vision::CFeature::x |
Definition at line 63 of file CFeature.h.
Referenced by mrpt::vision::CFeatureList::loadFromTextFile(), mrpt::vision::detail::trackFeatures_checkResponses< CFeatureList >(), and mrpt::vision::detail::trackFeatures_updatePatch< CFeatureList >().
float mrpt::vision::CFeature::x2[2] |
last time.
Definition at line 86 of file CFeature.h.
float mrpt::vision::CFeature::y |
Coordinates in the image.
Definition at line 63 of file CFeature.h.
Referenced by mrpt::vision::CFeatureList::loadFromTextFile(), mrpt::vision::detail::trackFeatures_checkResponses< CFeatureList >(), and mrpt::vision::detail::trackFeatures_updatePatch< CFeatureList >().
float mrpt::vision::CFeature::y2[2] |
Coordinates for a LSD Detector to represent a line.
Definition at line 86 of file CFeature.h.
Page generated by Doxygen 1.8.17 for MRPT 1.9.9 Git: ad3a9d8ae Tue May 1 23:10:22 2018 -0700 at miƩ 12 jul 2023 10:03:34 CEST |