Lines Matching refs:keypoints

56 void FAST_t(InputArray _img, std::vector<KeyPoint>& keypoints, int threshold, bool nonmax_suppressi…  in FAST_t()  argument
67 keypoints.clear(); in FAST_t()
247 keypoints.push_back(KeyPoint((float)j, (float)(i-1), 7.f, -1, (float)score)); in FAST_t()
259 static bool ocl_FAST( InputArray _img, std::vector<KeyPoint>& keypoints, in ocl_FAST() argument
286 keypoints.clear(); in ocl_FAST()
297 keypoints.push_back(KeyPoint((float)pt[i].x, (float)pt[i].y, 7.f, -1, 1.f)); in ocl_FAST()
324keypoints.push_back(KeyPoint((float)pt2[i].x, (float)pt2[i].y, 7.f, -1, (float)pt2[i].z)); in ocl_FAST()
331 void FAST(InputArray _img, std::vector<KeyPoint>& keypoints, int threshold, bool nonmax_suppression… in FAST() argument
334 ocl_FAST(_img, keypoints, threshold, nonmax_suppression, 10000)) in FAST()
342 FAST_t<8>(_img, keypoints, threshold, nonmax_suppression); in FAST()
345 FAST_t<12>(_img, keypoints, threshold, nonmax_suppression); in FAST()
349 if(tegra::useTegra() && tegra::FAST(_img, keypoints, threshold, nonmax_suppression)) in FAST()
352 FAST_t<16>(_img, keypoints, threshold, nonmax_suppression); in FAST()
358 void FAST(InputArray _img, std::vector<KeyPoint>& keypoints, int threshold, bool nonmax_suppression) in FAST() argument
360 FAST(_img, keypoints, threshold, nonmax_suppression, FastFeatureDetector::TYPE_9_16); in FAST()
371 void detect( InputArray _image, std::vector<KeyPoint>& keypoints, InputArray _mask ) in detect() argument
382 FAST( gray, keypoints, threshold, nonmaxSuppression, type ); in detect()
383 KeyPointsFilter::runByPixelsMask( keypoints, mask ); in detect()