ReUseX  0.0.1
3D Point Cloud Processing for Building Reuse
Loading...
Searching...
No Matches
import.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
6#include "global-params.hpp"
7
8#include <CLI/CLI.hpp>
9namespace fs = std::filesystem;
10
20
28
29// We could manually make a few variables and use shared pointers for each; this
30// is just done this way to be nicely organized
31
32// Function declarations.
33void setup_subcommand_import(CLI::App &app);
35 ImportContext &ctx);
ReUseX::CloudPtr CloudPtr
ReUseX::CloudLPtr CloudLPtr
ReUseX::CloudNPtr CloudNPtr
void setup_subcommand_import(CLI::App &app)
int run_subcommand_import(SubcommandImportOptions const &opt, ImportContext &ctx)
const fs::path cloud
const fs::path normals
const fs::path labels
CloudPtr cloud
Definition import.hpp:22
CloudNPtr normals
Definition import.hpp:23
CloudLPtr labels
Definition import.hpp:24
Collection of all options of Subcommand A.
Definition import.hpp:12
fs::path normals_path_out
Definition import.hpp:15