MCPcopy Create free account
hub / github.com/colmap/colmap / UseInlierMatchesCheck

Function UseInlierMatchesCheck

src/colmap/scene/database_cache.cc:39–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37namespace {
38
39bool UseInlierMatchesCheck(const DatabaseCache::Options& options,
40 int two_view_geometry_config,
41 size_t num_matches) {
42 return num_matches >= options.min_num_matches &&
43 (!options.ignore_watermarks ||
44 two_view_geometry_config != TwoViewGeometry::WATERMARK);
45};
46
47std::vector<Eigen::Vector2d> FeatureKeypointsToPointsVector(
48 const FeatureKeypoints& keypoints) {

Callers 2

LoadMethod · 0.85
CreateFromCacheMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected