HomeSort by relevance Sort by last modified time
    Searched refs:FastFeatureDetector (Results 1 - 17 of 17) sorted by null

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

Completed in 610 milliseconds