Home
last modified time | relevance | path

Searched refs:ReadKeypoints (Results 1 – 7 of 7) sorted by relevance

/dports/graphics/colmap/colmap-3.6/src/base/
H A Ddatabase_test.cc227 database.ReadKeypoints(image.ImageId()); in BOOST_AUTO_TEST_CASE()
447 BOOST_CHECK_EQUAL(merged_database.ReadKeypoints(1).size(), 10); in BOOST_AUTO_TEST_CASE()
448 BOOST_CHECK_EQUAL(merged_database.ReadKeypoints(2).size(), 20); in BOOST_AUTO_TEST_CASE()
449 BOOST_CHECK_EQUAL(merged_database.ReadKeypoints(3).size(), 30); in BOOST_AUTO_TEST_CASE()
450 BOOST_CHECK_EQUAL(merged_database.ReadKeypoints(4).size(), 40); in BOOST_AUTO_TEST_CASE()
451 BOOST_CHECK_EQUAL(merged_database.ReadKeypoints(1)[0].x, 100); in BOOST_AUTO_TEST_CASE()
452 BOOST_CHECK_EQUAL(merged_database.ReadKeypoints(2)[0].x, 200); in BOOST_AUTO_TEST_CASE()
453 BOOST_CHECK_EQUAL(merged_database.ReadKeypoints(3)[0].x, 300); in BOOST_AUTO_TEST_CASE()
454 BOOST_CHECK_EQUAL(merged_database.ReadKeypoints(4)[0].x, 400); in BOOST_AUTO_TEST_CASE()
H A Ddatabase_cache.cc150 database.ReadKeypoints(image.ImageId()); in Load()
H A Ddatabase.h149 FeatureKeypoints ReadKeypoints(const image_t image_id) const;
H A Ddatabase.cc432 FeatureKeypoints Database::ReadKeypoints(const image_t image_id) const { in ReadKeypoints() function in colmap::Database
844 const auto keypoints = database1.ReadKeypoints(image.ImageId()); in Merge()
859 const auto keypoints = database2.ReadKeypoints(image.ImageId()); in Merge()
/dports/graphics/colmap/colmap-3.6/src/ui/
H A Ddatabase_management_widget.cc97 const auto keypoints1 = database_->ReadKeypoints(image_->ImageId()); in ShowMatches()
98 const auto keypoints2 = database_->ReadKeypoints(selection.first->ImageId()); in ShowMatches()
635 const auto keypoints = database_->ReadKeypoints(image.ImageId()); in ShowImage()
/dports/graphics/colmap/colmap-3.6/src/exe/
H A Dcolmap.cc1999 auto keypoints = database.ReadKeypoints(database_images[i].ImageId()); in RunVocabTreeRetriever()
2043 auto keypoints = database.ReadKeypoints(query_images[i].ImageId()); in RunVocabTreeRetriever()
/dports/graphics/colmap/colmap-3.6/src/feature/
H A Dmatching.cc236 return database_->ReadKeypoints(image_id); in Setup()