Used Poitn2f instead of KeyPoint

This commit is contained in:
Ilya Lysenkov
2010-12-21 10:08:57 +00:00
parent b102299dfa
commit c4a8ae5931
5 changed files with 59 additions and 61 deletions

View File

@@ -1940,7 +1940,7 @@ bool findCirclesGrid( const Mat& image, Size patternSize,
{
Ptr<BlobDetector> detector = new BlobDetector();
//Ptr<FeatureDetector> detector = new MserFeatureDetector();
vector<KeyPoint> keypoints;
vector<Point2f> keypoints;
detector->detect(image, keypoints);
CirclesGridFinderParameters parameters;