FastFeatureDetector  426 modules/cudafeatures2d/include/opencv2/cudafeatures2d.hpp class CV_EXPORTS FastFeatureDetector : public cv::FastFeatureDetector, public Feature2DAsync
FastFeatureDetector  438 modules/cudafeatures2d/include/opencv2/cudafeatures2d.hpp     static Ptr<FastFeatureDetector> create(int threshold=10,
FastFeatureDetector  440 modules/cudafeatures2d/include/opencv2/cudafeatures2d.hpp                                            int type=FastFeatureDetector::TYPE_9_16,
FastFeatureDetector   67 modules/cudafeatures2d/perf/perf_features2d.cpp         cv::Ptr<cv::cuda::FastFeatureDetector> d_fast =
FastFeatureDetector   68 modules/cudafeatures2d/perf/perf_features2d.cpp                 cv::cuda::FastFeatureDetector::create(threshold, nonMaxSuppersion,
FastFeatureDetector   69 modules/cudafeatures2d/perf/perf_features2d.cpp                                                       cv::FastFeatureDetector::TYPE_9_16,
FastFeatureDetector   50 modules/cudafeatures2d/src/fast.cpp Ptr<cv::cuda::FastFeatureDetector> cv::cuda::FastFeatureDetector::create(int, bool, int, int) { throw_no_cuda(); return Ptr<cv::cuda::FastFeatureDetector>(); }
FastFeatureDetector   65 modules/cudafeatures2d/src/fast.cpp     class FAST_Impl : public cv::cuda::FastFeatureDetector
FastFeatureDetector  202 modules/cudafeatures2d/src/fast.cpp Ptr<cv::cuda::FastFeatureDetector> cv::cuda::FastFeatureDetector::create(int threshold, bool nonmaxSuppression, int type, int max_npoints)
FastFeatureDetector  410 modules/cudafeatures2d/src/orb.cpp         Ptr<cv::cuda::FastFeatureDetector> fastDetector_;
FastFeatureDetector  503 modules/cudafeatures2d/src/orb.cpp         fastDetector_ = cuda::FastFeatureDetector::create(fastThreshold_);
FastFeatureDetector  673 modules/cudafeatures2d/src/orb.cpp             count = cull_gpu(keypoints.ptr<int>(cuda::FastFeatureDetector::LOCATION_ROW), keypoints.ptr<float>(cuda::FastFeatureDetector::RESPONSE_ROW), count, n_points);
FastFeatureDetector   79 modules/cudafeatures2d/test/test_features2d.cpp     cv::Ptr<cv::cuda::FastFeatureDetector> fast = cv::cuda::FastFeatureDetector::create(threshold, nonmaxSuppression);
FastFeatureDetector  397 modules/features2d/include/opencv2/features2d.hpp     CV_WRAP static Ptr<FastFeatureDetector> create( int threshold=10,
FastFeatureDetector  399 modules/features2d/include/opencv2/features2d.hpp                                                     int type=FastFeatureDetector::TYPE_9_16 );
FastFeatureDetector  115 modules/features2d/misc/java/src/cpp/features2d_manual.hpp             fd = FastFeatureDetector::create();
FastFeatureDetector    9 modules/features2d/perf/opencl/perf_fast.cpp enum { TYPE_5_8 =FastFeatureDetector::TYPE_5_8, TYPE_7_12 = FastFeatureDetector::TYPE_7_12, TYPE_9_16 = FastFeatureDetector::TYPE_9_16 };
FastFeatureDetector   35 modules/features2d/perf/opencl/perf_fast.cpp     Ptr<FeatureDetector> fd = FastFeatureDetector::create(20, true, type);
FastFeatureDetector    9 modules/features2d/perf/perf_fast.cpp enum { TYPE_5_8 =FastFeatureDetector::TYPE_5_8, TYPE_7_12 = FastFeatureDetector::TYPE_7_12, TYPE_9_16 = FastFeatureDetector::TYPE_9_16 };
FastFeatureDetector   33 modules/features2d/perf/perf_fast.cpp     Ptr<FeatureDetector> fd = FastFeatureDetector::create(20, true, type);
FastFeatureDetector  333 modules/features2d/src/fast.cpp   if( ocl::useOpenCL() && _img.isUMat() && type == FastFeatureDetector::TYPE_9_16 &&
FastFeatureDetector  341 modules/features2d/src/fast.cpp     case FastFeatureDetector::TYPE_5_8:
FastFeatureDetector  344 modules/features2d/src/fast.cpp     case FastFeatureDetector::TYPE_7_12:
FastFeatureDetector  347 modules/features2d/src/fast.cpp     case FastFeatureDetector::TYPE_9_16:
FastFeatureDetector  360 modules/features2d/src/fast.cpp     FAST(_img, keypoints, threshold, nonmax_suppression, FastFeatureDetector::TYPE_9_16);
FastFeatureDetector  364 modules/features2d/src/fast.cpp class FastFeatureDetector_Impl : public FastFeatureDetector
FastFeatureDetector  424 modules/features2d/src/fast.cpp Ptr<FastFeatureDetector> FastFeatureDetector::create( int threshold, bool nonmaxSuppression, int type )
FastFeatureDetector  829 modules/features2d/src/orb.cpp         Ptr<FastFeatureDetector> fd = FastFeatureDetector::create(fastThreshold, true);
FastFeatureDetector  258 modules/features2d/test/test_detectors_regression.cpp     CV_FeatureDetectorTest test( "detector-fast", FastFeatureDetector::create() );
FastFeatureDetector  130 modules/features2d/test/test_keypoints.cpp     CV_FeatureDetectorKeypointsTest test(FastFeatureDetector::create());
FastFeatureDetector   19 samples/android/tutorial-2-mixedprocessing/jni/jni_part.cpp     Ptr<FeatureDetector> detector = FastFeatureDetector::create(50);
FastFeatureDetector  325 samples/gpu/performance/tests.cpp     cv::Ptr<cv::cuda::FastFeatureDetector> d_FAST = cv::cuda::FastFeatureDetector::create(20);
FastFeatureDetector  212 samples/winrt/OcvImageProcessing/OcvImageProcessing/MainPage.xaml.cpp     cv::Ptr<cv::FastFeatureDetector> detector = cv::FastFeatureDetector::create(50);
FastFeatureDetector  160 samples/wp8/OcvImageManipulation/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/Direct3DInterop.cpp         cv::Ptr<cv::FastFeatureDetector> detector = cv::FastFeatureDetector::create(50);