ReUseX  0.0.5
3D Point Cloud Processing for Building Reuse
Loading...
Searching...
No Matches
colmap.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2025 Povl Filip Sonne-Frederiksen
2//
3// SPDX-License-Identifier: GPL-3.0-or-later
4
5#pragma once
7
8#include <CLI/CLI.hpp>
9#include <filesystem>
10#include <memory>
11#include <string>
12
13namespace fs = std::filesystem;
14
16 fs::path output_dir;
17 bool no_lidar_seed = false;
18 std::size_t max_lidar_points = 100'000;
19 std::string lidar_cloud_name = "cloud";
20 int jpeg_quality = 95;
22 false;
23 int pano_n_yaw = 8;
24 double pano_fov = 90.0;
25 int pano_tile = 1024;
26};
27
28void setup_subcommand_export_colmap(CLI::App &parent,
29 std::shared_ptr<RuxOptions> global_opt);
31 const RuxOptions &global_opt);
void setup_subcommand_export_colmap(CLI::App &parent, std::shared_ptr< RuxOptions > global_opt)
int run_subcommand_export_colmap(SubcommandExportColmapOptions const &opt, const RuxOptions &global_opt)
bool with_panoramas
add aligned-360 perspective slices as cameras
Definition colmap.hpp:21