| 865 | } |
| 866 | |
| 867 | void OptionManager::AddReconstructionClustererOptions() { |
| 868 | if (added_reconstruction_clusterer_options_) { |
| 869 | return; |
| 870 | } |
| 871 | added_reconstruction_clusterer_options_ = true; |
| 872 | |
| 873 | AddDefaultOption("ReconstructionClusterer.min_covisibility_count", |
| 874 | &reconstruction_clusterer->min_covisibility_count); |
| 875 | AddDefaultOption("ReconstructionClusterer.min_edge_weight_threshold", |
| 876 | &reconstruction_clusterer->min_edge_weight_threshold); |
| 877 | AddDefaultOption("ReconstructionClusterer.min_num_reg_frames", |
| 878 | &reconstruction_clusterer->min_num_reg_frames); |
| 879 | } |
| 880 | |
| 881 | #if defined(COLMAP_MVS_ENABLED) |
| 882 | void OptionManager::AddPatchMatchStereoOptions() { |