features.diff
features2d.hpp 2013-10-15 22:21:52.000000000 -0700 | ||
---|---|---|
454 | 454 |
protected: |
455 | 455 |
virtual void computeImpl( const Mat& image, vector<KeyPoint>& keypoints, Mat& descriptors ) const; |
456 | 456 |
void buildPattern(); |
457 |
uchar meanIntensity( const Mat& image, const Mat& integral, const float kp_x, const float kp_y, |
|
457 |
|
|
458 |
template <typename imgType, typename iiType> |
|
459 |
int meanIntensity( const Mat& image, const Mat& integral, const float kp_x, const float kp_y, |
|
458 | 460 |
const unsigned int scale, const unsigned int rot, const unsigned int point ) const; |
459 | 461 | |
462 |
template <typename srcMatType, typename iiMatType> |
|
463 |
void computeDescriptors( const Mat& image, std::vector<KeyPoint>& keypoints, Mat& descriptors ) const; |
|
464 |
|
|
460 | 465 |
bool orientationNormalized; //true if the orientation is normalized, false otherwise |
461 | 466 |
bool scaleNormalized; //true if the scale is normalized, false otherwise |
462 | 467 |
double patternScale; //scaling of the pattern |