ReUseX  0.0.5
3D Point Cloud Processing for Building Reuse
Loading...
Searching...
No Matches
quality.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
10#include <memory>
11#include <string>
12
15 std::string cloud_name = "cloud";
16 std::string planes_name = "planes";
17 std::size_t min_points = 100;
18 std::string output_path;
19};
20
26 std::shared_ptr<RuxOptions> global_opt);
27
33 const RuxOptions &global_opt);
void setup_subcommand_analyze_quality(CLI::App &app, std::shared_ptr< RuxOptions > global_opt)
Setup the analyze quality subcommand in the CLI application.
int run_subcommand_analyze_quality(SubcommandAnalyzeQualityOptions const &opt, const RuxOptions &global_opt)
Run the analyze quality subcommand with given options.
Options for the reconstruction quality analysis subcommand.
Definition quality.hpp:14
std::string cloud_name
Point cloud to analyze.
Definition quality.hpp:15
std::string output_path
JSON output file ("" = stdout).
Definition quality.hpp:18
std::size_t min_points
Minimum points per reported plane.
Definition quality.hpp:17
std::string planes_name
Plane label cloud.
Definition quality.hpp:16