HomeSort by relevance Sort by last modified time
    Searched full:edgethreshold (Results 1 - 8 of 8) sorted by null

  /external/opencv3/modules/features2d/misc/java/test/
ORBDescriptorExtractorTest.java 103 String truth = "<?xml version=\"1.0\"?>\n<opencv_storage>\n<name>Feature2D.ORB</name>\n<WTA_K>2</WTA_K>\n<edgeThreshold>31</edgeThreshold>\n<firstLevel>0</firstLevel>\n<nFeatures>500</nFeatures>\n<nLevels>8</nLevels>\n<patchSize>31</patchSize>\n<scaleFactor>1.2000000476837158e+00</scaleFactor>\n<scoreType>0</scoreType>\n</opencv_storage>\n";
SIFTDescriptorExtractorTest.java 90 String truth = "<?xml version=\"1.0\"?>\n<opencv_storage>\n<name>Feature2D.SIFT</name>\n<contrastThreshold>4.0000000000000001e-02</contrastThreshold>\n<edgeThreshold>10.</edgeThreshold>\n<nFeatures>0</nFeatures>\n<nOctaveLayers>3</nOctaveLayers>\n<sigma>1.6000000000000001e+00</sigma>\n</opencv_storage>\n";
  /external/opencv3/modules/features2d/src/
orb.cpp 659 edgeThreshold(_edgeThreshold), firstLevel(_firstLevel), wta_k(_WTA_K),
672 void setEdgeThreshold(int edgeThreshold_) { edgeThreshold = edgeThreshold_; }
673 int getEdgeThreshold() const { return edgeThreshold; }
706 int edgeThreshold;
    [all...]
  /external/opencv3/modules/cudafeatures2d/src/
orb.cpp 344 int edgeThreshold,
370 virtual void setEdgeThreshold(int edgeThreshold) { edgeThreshold_ = edgeThreshold; }
482 int edgeThreshold,
492 edgeThreshold_(edgeThreshold),
    [all...]
  /external/opencv3/modules/cudafeatures2d/test/
test_features2d.cpp 133 int edgeThreshold;
146 edgeThreshold = GET_PARAM(4);
166 cv::cuda::ORB::create(nFeatures, scaleFactor, nLevels, edgeThreshold, firstLevel,
188 cv::Ptr<cv::ORB> orb_gold = cv::ORB::create(nFeatures, scaleFactor, nLevels, edgeThreshold, firstLevel, WTA_K, scoreType, patchSize);
  /external/opencv3/doc/py_tutorials/py_feature2d/py_sift_intro/
py_sift_intro.markdown 73 If this ratio is greater than a threshold, called **edgeThreshold** in OpenCV, that keypoint is
  /external/opencv3/modules/features2d/include/opencv2/
features2d.hpp 269 @param edgeThreshold This is size of the border where the features are not detected. It should
289 CV_WRAP static Ptr<ORB> create(int nfeatures=500, float scaleFactor=1.2f, int nlevels=8, int edgeThreshold=31,
301 CV_WRAP virtual void setEdgeThreshold(int edgeThreshold) = 0;
    [all...]
  /external/opencv3/modules/cudafeatures2d/include/opencv2/
cudafeatures2d.hpp 472 int edgeThreshold=31,

Completed in 75 milliseconds