mirror of
https://github.com/opencv/opencv.git
synced 2025-06-07 17:44:04 +08:00
alignment of parameters as per speclad
This commit is contained in:
parent
7fd8a19fe8
commit
0902f183ca
@ -552,12 +552,12 @@ public:
|
|||||||
|
|
||||||
//! converts vector of keypoints to vector of points
|
//! converts vector of keypoints to vector of points
|
||||||
CV_WRAP static void convert(const std::vector<KeyPoint>& keypoints,
|
CV_WRAP static void convert(const std::vector<KeyPoint>& keypoints,
|
||||||
CV_OUT std::vector<Point2f>& points2f,
|
CV_OUT std::vector<Point2f>& points2f,
|
||||||
const std::vector<int>& keypointIndexes=std::vector<int>());
|
const std::vector<int>& keypointIndexes=std::vector<int>());
|
||||||
//! converts vector of points to the vector of keypoints, where each keypoint is assigned the same size and the same orientation
|
//! converts vector of points to the vector of keypoints, where each keypoint is assigned the same size and the same orientation
|
||||||
CV_WRAP static void convert(const std::vector<Point2f>& points2f,
|
CV_WRAP static void convert(const std::vector<Point2f>& points2f,
|
||||||
CV_OUT std::vector<KeyPoint>& keypoints,
|
CV_OUT std::vector<KeyPoint>& keypoints,
|
||||||
float size=1, float response=1, int octave=0, int class_id=-1);
|
float size=1, float response=1, int octave=0, int class_id=-1);
|
||||||
|
|
||||||
//! computes overlap for pair of keypoints;
|
//! computes overlap for pair of keypoints;
|
||||||
//! overlap is a ratio between area of keypoint regions intersection and
|
//! overlap is a ratio between area of keypoint regions intersection and
|
||||||
|
Loading…
Reference in New Issue
Block a user