ReUseX  0.0.5
3D Point Cloud Processing for Building Reuse
Loading...
Searching...
No Matches
photos.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#include <vector>
13
14namespace fs = std::filesystem;
15
17 std::vector<fs::path> input_paths; // directories or individual files
18 std::string project_id;
19};
20
22 std::shared_ptr<RuxOptions> global_opt);
24 const RuxOptions &global_opt);
void setup_subcommand_import_photos(CLI::App &app, std::shared_ptr< RuxOptions > global_opt)
int run_subcommand_import_photos(SubcommandImportPhotosOptions const &opt, const RuxOptions &global_opt)
std::vector< fs::path > input_paths
Definition photos.hpp:17