/external/opencv3/modules/java/src/ |
features2d+DescriptorMatcher.java | 16 public class DescriptorMatcher { 19 protected DescriptorMatcher(long addr) { nativeObj = addr; } 269 public DescriptorMatcher clone(boolean emptyTrainData) 272 DescriptorMatcher retVal = new DescriptorMatcher(clone_0(nativeObj, emptyTrainData)); 278 public DescriptorMatcher clone() 281 DescriptorMatcher retVal = new DescriptorMatcher(clone_1(nativeObj)); 292 public static DescriptorMatcher create(int matcherType) 295 DescriptorMatcher retVal = new DescriptorMatcher(create_0(matcherType)) [all...] |
/external/opencv3/modules/features2d/misc/java/test/ |
Features2dTest.java | 17 import org.opencv.features2d.DescriptorMatcher; 86 DescriptorMatcher matcher = DescriptorMatcher.create(DescriptorMatcher.BRUTEFORCE);
|
BruteForceHammingDescriptorMatcherTest.java | 16 import org.opencv.features2d.DescriptorMatcher; 24 DescriptorMatcher matcher; 71 matcher = DescriptorMatcher.create(DescriptorMatcher.BRUTEFORCE_HAMMING); 99 DescriptorMatcher cloned = matcher.clone(); 111 DescriptorMatcher cloned = matcher.clone(true);
|
BruteForceHammingLUTDescriptorMatcherTest.java | 15 import org.opencv.features2d.DescriptorMatcher; 23 DescriptorMatcher matcher; 70 matcher = DescriptorMatcher.create(DescriptorMatcher.BRUTEFORCE_HAMMINGLUT); 98 DescriptorMatcher cloned = matcher.clone(); 110 DescriptorMatcher cloned = matcher.clone(true);
|
BruteForceL1DescriptorMatcherTest.java | 15 import org.opencv.features2d.DescriptorMatcher; 24 DescriptorMatcher matcher; 85 matcher = DescriptorMatcher.create(DescriptorMatcher.BRUTEFORCE_L1); 115 DescriptorMatcher cloned = matcher.clone(); 127 DescriptorMatcher cloned = matcher.clone(true);
|
BruteForceSL2DescriptorMatcherTest.java | 15 import org.opencv.features2d.DescriptorMatcher; 24 DescriptorMatcher matcher; 90 matcher = DescriptorMatcher.create(DescriptorMatcher.BRUTEFORCE_SL2); 120 DescriptorMatcher cloned = matcher.clone(); 132 DescriptorMatcher cloned = matcher.clone(true);
|
BruteForceDescriptorMatcherTest.java | 16 import org.opencv.features2d.DescriptorMatcher; 25 DescriptorMatcher matcher; 85 matcher = DescriptorMatcher.create(DescriptorMatcher.BRUTEFORCE); 115 DescriptorMatcher cloned = matcher.clone(); 127 DescriptorMatcher cloned = matcher.clone(true);
|
FlannBasedDescriptorMatcherTest.java | 16 import org.opencv.features2d.DescriptorMatcher; 97 DescriptorMatcher matcher; 159 matcher = DescriptorMatcher.create(DescriptorMatcher.FLANNBASED); 198 DescriptorMatcher cloned = matcher.clone(true);
|
/external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/ |
RobustMatcher.h | 38 void setDescriptorMatcher(const cv::Ptr<cv::DescriptorMatcher>& match) { matcher_ = match; } 76 cv::Ptr<cv::DescriptorMatcher> matcher_;
|
main_detection.cpp | 135 Ptr<DescriptorMatcher> matcher = makePtr<FlannBasedMatcher>(indexParams, searchParams);
|
/external/opencv3/samples/gpu/ |
surf_keypoint_matcher.cpp | 65 Ptr<cv::cuda::DescriptorMatcher> matcher = cv::cuda::DescriptorMatcher::createBFMatcher(surf.defaultNorm());
|
/external/opencv3/modules/features2d/src/ |
matchers.cpp | 395 * DescriptorMatcher * 397 DescriptorMatcher::DescriptorCollection::DescriptorCollection() 400 DescriptorMatcher::DescriptorCollection::DescriptorCollection( const DescriptorCollection& collection ) 406 DescriptorMatcher::DescriptorCollection::~DescriptorCollection() 409 void DescriptorMatcher::DescriptorCollection::set( const std::vector<Mat>& descriptors ) 458 void DescriptorMatcher::DescriptorCollection::clear() 464 const Mat DescriptorMatcher::DescriptorCollection::getDescriptor( int imgIdx, int localDescIdx ) const 473 const Mat& DescriptorMatcher::DescriptorCollection::getDescriptors() const 478 const Mat DescriptorMatcher::DescriptorCollection::getDescriptor( int globalDescIdx ) const 484 void DescriptorMatcher::DescriptorCollection::getLocalIdx( int globalDescIdx, int& imgIdx, int& localDescIdx ) cons [all...] |
bagofwords.cpp | 120 const Ptr<DescriptorMatcher>& _dmatcher ) : 124 BOWImgDescriptorExtractor::BOWImgDescriptorExtractor( const Ptr<DescriptorMatcher>& _dmatcher ) :
|
/external/opencv3/modules/cudafeatures2d/perf/ |
perf_features2d.cpp | 170 cv::Ptr<cv::cuda::DescriptorMatcher> d_matcher = cv::cuda::DescriptorMatcher::createBFMatcher(normType); 229 cv::Ptr<cv::cuda::DescriptorMatcher> d_matcher = cv::cuda::DescriptorMatcher::createBFMatcher(normType); 283 cv::Ptr<cv::cuda::DescriptorMatcher> d_matcher = cv::cuda::DescriptorMatcher::createBFMatcher(normType);
|
/external/opencv3/modules/features2d/include/opencv2/ |
features2d.hpp | 58 implement vector descriptor matchers inherit the DescriptorMatcher interface. 734 * DescriptorMatcher * 745 class CV_EXPORTS_W DescriptorMatcher : public Algorithm 748 virtual ~DescriptorMatcher(); [all...] |
/external/opencv3/modules/cudafeatures2d/test/ |
test_features2d.cpp | 288 cv::Ptr<cv::cuda::DescriptorMatcher> matcher = 289 cv::cuda::DescriptorMatcher::createBFMatcher(normCode); 316 cv::Ptr<cv::cuda::DescriptorMatcher> matcher = 317 cv::cuda::DescriptorMatcher::createBFMatcher(normCode); 371 cv::Ptr<cv::cuda::DescriptorMatcher> matcher = 372 cv::cuda::DescriptorMatcher::createBFMatcher(normCode); 411 cv::Ptr<cv::cuda::DescriptorMatcher> matcher = 412 cv::cuda::DescriptorMatcher::createBFMatcher(normCode); 451 cv::Ptr<cv::cuda::DescriptorMatcher> matcher = 452 cv::cuda::DescriptorMatcher::createBFMatcher(normCode) [all...] |
/external/opencv3/samples/cpp/tutorial_code/features2D/AKAZE_tracking/ |
planar_tracking.cpp | 23 Tracker(Ptr<Feature2D> _detector, Ptr<DescriptorMatcher> _matcher) : 35 Ptr<DescriptorMatcher> matcher; 144 Ptr<DescriptorMatcher> matcher = DescriptorMatcher::create("BruteForce-Hamming");
|
/external/opencv3/modules/features2d/misc/java/src/cpp/ |
features2d_manual.hpp | 181 class CV_EXPORTS_AS(DescriptorMatcher) javaDescriptorMatcher 273 return new javaDescriptorMatcher(DescriptorMatcher::create(name)); 289 javaDescriptorMatcher(Ptr<DescriptorMatcher> _wrapped) : wrapped(_wrapped) 292 Ptr<DescriptorMatcher> wrapped;
|
/external/opencv3/modules/cudafeatures2d/include/opencv2/ |
cudafeatures2d.hpp | 67 // DescriptorMatcher 75 class CV_EXPORTS DescriptorMatcher : public cv::Algorithm 92 static Ptr<DescriptorMatcher> createBFMatcher(int normType = cv::NORM_L2); 149 second variant of the method, train descriptors collection that was set by DescriptorMatcher::add is 170 Use DescriptorMatcher::matchConvert method to retrieve results in standard representation. 176 second variant of the method, train descriptors collection that was set by DescriptorMatcher::add is 195 The method is supposed to be used with DescriptorMatcher::matchAsync to get final result. 196 Call this method only after DescriptorMatcher::matchAsync is completed (ie. after synchronization). 198 @param gpu_matches Matches, returned from DescriptorMatcher::matchAsync. 222 These extended variants of DescriptorMatcher::match methods find several best matches for each quer [all...] |
/external/opencv3/samples/cpp/ |
matchmethod_orb_akaze_brisk.cpp | 69 Ptr<DescriptorMatcher> descriptorMatcher; 99 descriptorMatcher = DescriptorMatcher::create(*itMatcher); 114 descriptorMatcher->match(descImg1, descImg2, matches, Mat());
|
/external/opencv3/modules/features2d/test/ |
test_matchers_algorithmic.cpp | 57 CV_DescriptorMatcherTest( const string& _name, const Ptr<DescriptorMatcher>& _dmatcher, float _badPart ) : 75 Ptr<DescriptorMatcher> dmatcher; 536 DescriptorMatcher::create("BruteForce"), 0.01f ); 543 DescriptorMatcher::create("FlannBased"), 0.04f );
|
/external/opencv3/modules/cudafeatures2d/src/ |
brute_force_matcher.cpp | 50 Ptr<cv::cuda::DescriptorMatcher> cv::cuda::DescriptorMatcher::createBFMatcher(int) { throw_no_cuda(); return Ptr<cv::cuda::DescriptorMatcher>(); } 176 class BFMatcher_Impl : public cv::cuda::DescriptorMatcher [all...] |
/external/opencv3/modules/stitching/src/ |
matchers.cpp | 157 Ptr<cv::DescriptorMatcher> matcher; 223 Ptr<cuda::DescriptorMatcher> matcher = cuda::DescriptorMatcher::createBFMatcher(NORM_L2);
|
/external/opencv3/samples/gpu/performance/ |
tests.cpp | 382 Ptr<cuda::DescriptorMatcher> d_matcher = cuda::DescriptorMatcher::createBFMatcher(NORM_L2);
|
/cts/apps/CtsVerifier/libs/ |
opencv3-android.jar | |