| 98 | } |
| 99 | |
| 100 | void OptionManager::ModifyForVideoData() { |
| 101 | const bool kResetPaths = false; |
| 102 | ResetOptions(kResetPaths); |
| 103 | mapper->mapper.init_min_tri_angle /= 2; |
| 104 | mapper->ba_global_frames_ratio = 1.4; |
| 105 | mapper->ba_global_points_ratio = 1.4; |
| 106 | mapper->min_focal_length_ratio = 0.1; |
| 107 | mapper->max_focal_length_ratio = 10; |
| 108 | mapper->max_extra_param = std::numeric_limits<double>::max(); |
| 109 | #if defined(COLMAP_MVS_ENABLED) |
| 110 | stereo_fusion->min_num_pixels = 15; |
| 111 | #endif |
| 112 | } |
| 113 | |
| 114 | void OptionManager::ModifyForInternetData() { |
| 115 | #if defined(COLMAP_MVS_ENABLED) |
no outgoing calls
no test coverage detected