Home
last modified time | relevance | path

Searched refs:ExistsMatches (Results 1 – 6 of 6) sorted by relevance

/dports/graphics/colmap/colmap-3.6/src/base/
H A Ddatabase_test.cc463 BOOST_CHECK(merged_database.ExistsMatches(1, 2)); in BOOST_AUTO_TEST_CASE()
464 BOOST_CHECK(!merged_database.ExistsMatches(2, 3)); in BOOST_AUTO_TEST_CASE()
465 BOOST_CHECK(!merged_database.ExistsMatches(2, 4)); in BOOST_AUTO_TEST_CASE()
466 BOOST_CHECK(merged_database.ExistsMatches(3, 4)); in BOOST_AUTO_TEST_CASE()
H A Ddatabase.h81 bool ExistsMatches(const image_t image_id1, const image_t image_id2) const;
H A Ddatabase.cc311 bool Database::ExistsMatches(const image_t image_id1, in ExistsMatches() function in colmap::Database
/dports/graphics/colmap/colmap-3.6/src/feature/
H A Dmatching.h193 bool ExistsMatches(const image_t image_id1, const image_t image_id2);
H A Dmatching.cc280 bool FeatureMatcherCache::ExistsMatches(const image_t image_id1, in ExistsMatches() function in colmap::FeatureMatcherCache
283 return database_->ExistsMatches(image_id1, image_id2); in ExistsMatches()
780 cache_->ExistsMatches(image_pair.first, image_pair.second); in Match()
/dports/graphics/colmap/colmap-3.6/src/ui/
H A Ddatabase_management_widget.cc168 if (database_->ExistsMatches(image_id, image.ImageId())) { in Reload()