OpenCV453
|
Elliptic region around an interest point. [詳解]
#include <xfeatures2d.hpp>
cv::KeyPointを継承しています。
公開メンバ関数 | |
Elliptic_KeyPoint (Point2f pt, float angle, Size axes, float size, float si) | |
![]() | |
CV_WRAP | KeyPoint () |
the default constructor | |
KeyPoint (Point2f pt, float size, float angle=-1, float response=0, int octave=0, int class_id=-1) | |
CV_WRAP | KeyPoint (float x, float y, float size, float angle=-1, float response=0, int octave=0, int class_id=-1) |
size_t | hash () const |
公開変数類 | |
Size_< float > | axes |
the lengths of the major and minor ellipse axes | |
float | si |
the integration scale at which the parameters were estimated | |
Matx23f | transf |
the transformation between image space and local patch space | |
![]() | |
CV_PROP_RW Point2f | pt |
coordinates of the keypoints | |
CV_PROP_RW float | size |
diameter of the meaningful keypoint neighborhood | |
CV_PROP_RW float | angle |
CV_PROP_RW float | response |
the response by which the most strong keypoints have been selected. Can be used for the further sorting or subsampling | |
CV_PROP_RW int | octave |
octave (pyramid layer) from which the keypoint has been extracted | |
CV_PROP_RW int | class_id |
object class (if the keypoints need to be clustered by an object they belong to) | |
その他の継承メンバ | |
![]() | |
static CV_WRAP void | convert (const std::vector< KeyPoint > &keypoints, CV_OUT std::vector< Point2f > &points2f, const std::vector< int > &keypointIndexes=std::vector< int >()) |
static CV_WRAP void | convert (const std::vector< Point2f > &points2f, CV_OUT std::vector< KeyPoint > &keypoints, float size=1, float response=1, int octave=0, int class_id=-1) |
static CV_WRAP float | overlap (const KeyPoint &kp1, const KeyPoint &kp2) |
Elliptic region around an interest point.