Home
last modified time | relevance | path

Searched refs:descriptors2 (Results 1 – 25 of 35) sorted by relevance

12

/dports/graphics/colmap/colmap-3.6/src/feature/
H A Dsift_test.cc334 const FeatureDescriptors& descriptors2) { in BOOST_AUTO_TEST_CASE() argument
367 const FeatureDescriptors descriptors2 = in BOOST_AUTO_TEST_CASE() local
376 const FeatureDescriptors descriptors2 = in BOOST_AUTO_TEST_CASE() local
394 descriptors2.row(99) = descriptors2.row(0); in BOOST_AUTO_TEST_CASE()
395 descriptors2(0, 0) += 50.0f; in BOOST_AUTO_TEST_CASE()
398 descriptors2(99, 0) += 100.0f; in BOOST_AUTO_TEST_CASE()
614 const FeatureDescriptors descriptors2 = in BOOST_AUTO_TEST_CASE() local
623 const FeatureDescriptors descriptors2 = in BOOST_AUTO_TEST_CASE() local
641 descriptors2.row(99) = descriptors2.row(0); in BOOST_AUTO_TEST_CASE()
642 descriptors2(0, 0) += 50.0f; in BOOST_AUTO_TEST_CASE()
[all …]
H A Dsift.h216 const FeatureDescriptors& descriptors2,
220 const FeatureDescriptors& descriptors2,
224 const FeatureDescriptors& descriptors2,
230 const FeatureDescriptors& descriptors2,
245 const FeatureDescriptors* descriptors2,
252 const FeatureDescriptors* descriptors2,
H A Dsift.cc171 const FeatureDescriptors& descriptors2, in ComputeSiftDistanceMatrix() argument
177 CHECK_EQ(keypoints2->size(), descriptors2.rows()); in ComputeSiftDistanceMatrix()
183 descriptors2.cast<int>(); in ComputeSiftDistanceMatrix()
186 descriptors1.rows(), descriptors2.rows()); in ComputeSiftDistanceMatrix()
1167 if (descriptors2 != nullptr) { in MatchSiftFeaturesGPU()
1168 CHECK_EQ(descriptors2->cols(), 128); in MatchSiftFeaturesGPU()
1171 descriptors2->data()); in MatchSiftFeaturesGPU()
1230 if (descriptors2 != nullptr) { in MatchGuidedSiftFeaturesGPU()
1232 CHECK_EQ(descriptors2->rows(), keypoints2->size()); in MatchGuidedSiftFeaturesGPU()
1233 CHECK_EQ(descriptors2->cols(), 128); in MatchGuidedSiftFeaturesGPU()
[all …]
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/shape/src/
H A Dhist_cost.cpp132 Mat descriptors2=_descriptors2.getMat(); in buildCostMatrix() local
133 int costrows = std::max(descriptors1.rows, descriptors2.rows)+nDummies; in buildCostMatrix()
140 cv::Mat scd2 = descriptors2.clone(); in buildCostMatrix()
260 Mat descriptors2=_descriptors2.getMat(); in buildCostMatrix() local
261 int costrows = std::max(descriptors1.rows, descriptors2.rows)+nDummies; in buildCostMatrix()
267 cv::Mat scd2=descriptors2.clone(); in buildCostMatrix()
384 Mat descriptors2=_descriptors2.getMat(); in buildCostMatrix() local
385 int costrows = std::max(descriptors1.rows, descriptors2.rows)+nDummies; in buildCostMatrix()
391 cv::Mat scd2=descriptors2.clone(); in buildCostMatrix()
503 Mat descriptors2=_descriptors2.getMat(); in buildCostMatrix() local
[all …]
H A Dscd_def.hpp116 …void matchDescriptors(cv::Mat& descriptors1, cv::Mat& descriptors2, std::vector<cv::DMatch>& matc…
125 void buildCostMatrix(const cv::Mat& descriptors1, const cv::Mat& descriptors2,
/dports/misc/visp/visp-3.4.0/modules/vision/test/key-point/
H A DtestKeyPoint-7.cpp207 bool compareDescriptors(const cv::Mat &descriptors1, const cv::Mat &descriptors2) in compareDescriptors() argument
209 if (descriptors1.rows != descriptors2.rows || descriptors1.cols != descriptors2.cols || in compareDescriptors()
210 descriptors1.type() != descriptors2.type()) { in compareDescriptors()
218 if (descriptors1.at<unsigned char>(i, j) != descriptors2.at<unsigned char>(i, j)) { in compareDescriptors()
226 if (descriptors1.at<char>(i, j) != descriptors2.at<char>(i, j)) { in compareDescriptors()
234 if (descriptors1.at<unsigned short>(i, j) != descriptors2.at<unsigned short>(i, j)) { in compareDescriptors()
242 if (descriptors1.at<short>(i, j) != descriptors2.at<short>(i, j)) { in compareDescriptors()
250 if (descriptors1.at<int>(i, j) != descriptors2.at<int>(i, j)) { in compareDescriptors()
252 << " ; descriptors2.at<int>(i,j)=" << descriptors2.at<int>(i, j) << std::endl; in compareDescriptors()
258 if (!vpMath::equal(descriptors1.at<float>(i, j), descriptors2.at<float>(i, j), in compareDescriptors()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/ide/api/
H A DIDETest.java47 …IEditorDescriptor[] descriptors2 = IDE.overrideEditorAssociations((IEditorInput) null, null, descr… in testOverrideEditorAssociations() local
48 assertNoNullEntries(descriptors2); in testOverrideEditorAssociations()
49 assertArrayContains(descriptors2, descriptor1, descriptor2); in testOverrideEditorAssociations()
52 descriptors2 = IDE.overrideEditorAssociations((String) null, null, descriptors); in testOverrideEditorAssociations()
53 assertNoNullEntries(descriptors2); in testOverrideEditorAssociations()
54 assertArrayContains(descriptors2, descriptor1, descriptor2); in testOverrideEditorAssociations()
/dports/graphics/py-scikit-image/scikit-image-0.19.0/skimage/feature/tests/
H A Dtest_match.py49 descriptors2 = extractor.descriptors
51 matches = match_descriptors(descriptors1, descriptors2, cross_check=False)
64 matches = match_descriptors(descriptors1, descriptors2,
70 matches = match_descriptors(descriptors1, descriptors2,
95 descriptors2 = extractor.descriptors
97 matches = match_descriptors(descriptors1, descriptors2, cross_check=True)
/dports/graphics/opencv/opencv-4.5.3/samples/cpp/tutorial_code/features2D/feature_description/
H A DSURF_matching_Demo.cpp34 Mat descriptors1, descriptors2; in main() local
36 detector->detectAndCompute( img2, noArray(), keypoints2, descriptors2 ); in main()
42 matcher->match( descriptors1, descriptors2, matches ); in main()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/xfeatures2d/samples/
H A Dshape_transformation.cpp48 Mat descriptors1, descriptors2; in main() local
50 surf->detectAndCompute(img2, Mat(), keypoints2, descriptors2); in main()
55 matcher.match(descriptors1, descriptors2, matches); in main()
H A Dsurf_matcher.cpp190 descriptors2 = _descriptors2.getMat(ACCESS_RW); in main() local
203 surf(img2.getMat(ACCESS_READ), Mat(), keypoints2, descriptors2); in main()
204 matcher.match(descriptors1, descriptors2, matches); in main()
/dports/graphics/py-scikit-image/scikit-image-0.19.0/skimage/feature/
H A Dmatch.py5 def match_descriptors(descriptors1, descriptors2, metric=None, p=2, argument
53 if descriptors1.shape[1] != descriptors2.shape[1]:
67 distances = cdist(descriptors1, descriptors2, metric=metric, **kwargs)
/dports/graphics/opencv/opencv-4.5.3/samples/cpp/tutorial_code/features2D/feature_flann_matcher/
H A DSURF_FLANN_matching_Demo.cpp34 Mat descriptors1, descriptors2; in main() local
36 detector->detectAndCompute( img2, noArray(), keypoints2, descriptors2 ); in main()
42 matcher->knnMatch( descriptors1, descriptors2, knn_matches, 2 ); in main()
/dports/graphics/opencv/opencv-4.5.3/samples/java/tutorial_code/features2D/feature_description/
H A DSURFMatchingDemo.java28 Mat descriptors1 = new Mat(), descriptors2 = new Mat(); in run() local
30 detector.detectAndCompute(img2, new Mat(), keypoints2, descriptors2); in run()
36 matcher.match(descriptors1, descriptors2, matches); in run()
/dports/graphics/opencv/opencv-4.5.3/samples/java/tutorial_code/features2D/feature_flann_matcher/
H A DSURFFLANNMatchingDemo.java34 Mat descriptors1 = new Mat(), descriptors2 = new Mat(); in run() local
36 detector.detectAndCompute(img2, new Mat(), keypoints2, descriptors2); in run()
42 matcher.knnMatch(descriptors1, descriptors2, knnMatches, 2); in run()
/dports/graphics/opencv/opencv-4.5.3/samples/python/tutorial_code/features2D/feature_description/
H A DSURF_matching_Demo.py21 keypoints2, descriptors2 = detector.detectAndCompute(img2, None) variable
26 matches = matcher.match(descriptors1, descriptors2)
/dports/graphics/py-scikit-image/scikit-image-0.19.0/doc/examples/features_detection/
H A Dplot_orb.py37 descriptors2 = descriptor_extractor.descriptors variable
43 matches12 = match_descriptors(descriptors1, descriptors2, cross_check=True)
H A Dplot_brief.py42 descriptors2 = extractor.descriptors variable
48 matches12 = match_descriptors(descriptors1, descriptors2, cross_check=True)
H A Dplot_sift.py51 descriptors2 = descriptor_extractor.descriptors variable
57 matches12 = match_descriptors(descriptors1, descriptors2, max_ratio=0.6,
/dports/graphics/opencv/opencv-4.5.3/samples/python/tutorial_code/features2D/feature_flann_matcher/
H A DSURF_FLANN_matching_Demo.py21 keypoints2, descriptors2 = detector.detectAndCompute(img2, None) variable
26 knn_matches = matcher.knnMatch(descriptors1, descriptors2, 2)
/dports/graphics/opencv/opencv-4.5.3/samples/gpu/
H A Dsurf_keypoint_matcher.cpp71 vector<float> descriptors1, descriptors2; in main() local
75 surf.downloadDescriptors(descriptors2GPU, descriptors2); in main()
/dports/graphics/opencv/opencv-4.5.3/samples/cpp/
H A Depipolar_lines.cpp27 Mat descriptors1, descriptors2; in main() local
34 detector->compute(image2, keypoints2, descriptors2); in main()
40 matcher.knnMatch(descriptors1, descriptors2, matches_vector, 2); in main()
/dports/graphics/colmap/colmap-3.6/src/retrieval/
H A Dvisual_index_test.cc80 typename VisualIndexType::DescType descriptors2 = in TestVocabTreeType() local
82 visual_index.Add(index_options, 2, keypoints2, descriptors2); in TestVocabTreeType()
/dports/science/rdkit/rdkit-Release_2021_03_5/rdkit/Chem/
H A DUnitTestDescriptors.py188 descriptors2 = set([n for n, _ in Descriptors.descList])
189 self.assertEqual(descriptors2.intersection(descriptors), descriptors)
192 self.assertEqual(descriptors2.intersection(names), names)
/dports/graphics/opencv/opencv-4.5.3/samples/python/
H A Dessential_mat_reconstr.py46 … keypoints2, descriptors2 = detector.detectAndCompute(cv.cvtColor(image2, cv.COLOR_BGR2GRAY), None) variable
49 print('match with FLANN, size of descriptors', descriptors1.shape, descriptors2.shape)
50 matches_vector = matcher.knnMatch(descriptors1, descriptors2, k=2)

12