opencv on mbed

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

2D Features Framework

2D Features Framework

Data Structures

class  KeyPointsFilter
 A class filters a vector of keypoints. More...
class  Feature2D
 Abstract base class for 2D image feature detectors and descriptor extractors. More...

Modules

 Feature Detection and Description
 Descriptor Matchers
 

Matchers of keypoint descriptors in OpenCV have wrappers with a common interface that enables you to easily switch between different algorithms solving the same problem.


 Drawing Function of Keypoints and Matches
 Object Categorization
 

This section describes approaches based on local 2D features and used to categorize objects.


Typedefs

typedef Feature2D FeatureDetector
 Feature detectors in OpenCV have wrappers with a common interface that enables you to easily switch between different algorithms solving the same problem.
typedef Feature2D DescriptorExtractor
 Extractors of keypoint descriptors in OpenCV have wrappers with a common interface that enables you to easily switch between different algorithms solving the same problem.

Typedef Documentation

typedef Feature2D DescriptorExtractor

Extractors of keypoint descriptors in OpenCV have wrappers with a common interface that enables you to easily switch between different algorithms solving the same problem.

This section is devoted to computing descriptors represented as vectors in a multidimensional space. All objects that implement the vector descriptor extractors inherit the DescriptorExtractor interface.

Definition at line 213 of file features2d.hpp.

typedef Feature2D FeatureDetector

Feature detectors in OpenCV have wrappers with a common interface that enables you to easily switch between different algorithms solving the same problem.

All objects that implement keypoint detectors inherit the FeatureDetector interface.

Definition at line 206 of file features2d.hpp.