OpenCV  3.1.0
Open Source Computer Vision
Modules | Classes | Typedefs | Enumerations | Functions
2D Features Framework

Modules

 Feature Detection and Description
 
 Descriptor Matchers
 
 Drawing Function of Keypoints and Matches
 
 Object Categorization
 

Classes

struct  cv::Accumulator< T >
 
struct  cv::Accumulator< char >
 
struct  cv::Accumulator< short >
 
struct  cv::Accumulator< unsigned char >
 
struct  cv::Accumulator< unsigned short >
 
class  cv::Feature2D
 Abstract base class for 2D image feature detectors and descriptor extractors. More...
 
class  cv::KeyPointsFilter
 A class filters a vector of keypoints. More...
 
struct  cv::L1< T >
 
struct  cv::L2< T >
 
struct  cv::SL2< T >
 

Typedefs

typedef Feature2D cv::DescriptorExtractor
 
typedef Feature2D cv::FeatureDetector
 

Enumerations

enum  { cv::SL2< T >::normType = NORM_L2SQR }
 
enum  { cv::L2< T >::normType = NORM_L2 }
 
enum  { cv::L1< T >::normType = NORM_L1 }
 

Functions

void cv::computeRecallPrecisionCurve (const std::vector< std::vector< DMatch > > &matches1to2, const std::vector< std::vector< uchar > > &correctMatches1to2Mask, std::vector< Point2f > &recallPrecisionCurve)
 
void cv::evaluateFeatureDetector (const Mat &img1, const Mat &img2, const Mat &H1to2, std::vector< KeyPoint > *keypoints1, std::vector< KeyPoint > *keypoints2, float &repeatability, int &correspCount, const Ptr< FeatureDetector > &fdetector=Ptr< FeatureDetector >())
 
int cv::getNearestPoint (const std::vector< Point2f > &recallPrecisionCurve, float l_precision)
 
float cv::getRecall (const std::vector< Point2f > &recallPrecisionCurve, float l_precision)
 

Detailed Description

Typedef Documentation

typedef Feature2D cv::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.

typedef Feature2D cv::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.

Enumeration Type Documentation

template<class T >
anonymous enum
Enumerator
normType 
template<class T>
anonymous enum
Enumerator
normType 
template<class T>
anonymous enum
Enumerator
normType 

Function Documentation

void cv::computeRecallPrecisionCurve ( const std::vector< std::vector< DMatch > > &  matches1to2,
const std::vector< std::vector< uchar > > &  correctMatches1to2Mask,
std::vector< Point2f > &  recallPrecisionCurve 
)
void cv::evaluateFeatureDetector ( const Mat img1,
const Mat img2,
const Mat H1to2,
std::vector< KeyPoint > *  keypoints1,
std::vector< KeyPoint > *  keypoints2,
float &  repeatability,
int &  correspCount,
const Ptr< FeatureDetector > &  fdetector = PtrFeatureDetector >() 
)
int cv::getNearestPoint ( const std::vector< Point2f > &  recallPrecisionCurve,
float  l_precision 
)
float cv::getRecall ( const std::vector< Point2f > &  recallPrecisionCurve,
float  l_precision 
)