uvgVPCCenc 1.2.0
uvgVPCCenc is an open-source real-time V-PCC encoder library written in C++ from scratch.
Loading...
Searching...
No Matches
parameters.hpp
Go to the documentation of this file.
1/*****************************************************************************
2 * This file is part of uvgVPCCenc V-PCC encoder.
3 *
4 * Copyright (c) 2024, Tampere University, ITU/ISO/IEC, project contributors
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without modification,
8 * are permitted (subject to the limitations in the disclaimer below) provided that the following conditions are met:
9 *
10 * * Redistributions of source code must retain the above copyright notice, this
11 * list of conditions and the following disclaimer.
12 *
13 * * Redistributions in binary form must reproduce the above copyright notice, this
14 * list of conditions and the following disclaimer in the documentation and/or
15 * other materials provided with the distribution.
16 *
17 * * Neither the name of Tampere University, ITU/ISO/IEC nor the names of its
18 * contributors may be used to endorse or promote products derived from
19 * this software without specific prior written permission.
20 *
21 * NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY THIS LICENSE.
22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
24 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
26 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
27 * INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION HOWEVER CAUSED AND ON
29 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 * INCLUDING NEGLIGENCE OR OTHERWISE ARISING IN ANY WAY OUT OF THE USE OF THIS
32 ****************************************************************************/
33
35
36#pragma once
37
38#include <cstddef>
39#include <limits>
40#include <string>
41#include <vector>
42
44#include "uvgutils/utils.hpp"
45
46namespace uvgformat {
47
48struct Parameters {
49 size_t geoPrecisionInput = 0; // Must be set before initializeFormat().
50 std::string logLevel = "INFO";
51
52 // Voxelization adaptation
53 bool enableVoxelization = false;
54 bool keepGeoRatio = false; // Use a single scale (largest range) so aspect ratio is kept.
55 double voxelMin = std::numeric_limits<double>::quiet_NaN(); // NaN = compute from data, overrides per-axis if set
56 double voxelMinX = std::numeric_limits<double>::quiet_NaN(); // NaN = compute from data
57 double voxelMinY = std::numeric_limits<double>::quiet_NaN();
58 double voxelMinZ = std::numeric_limits<double>::quiet_NaN();
59 double voxelMax = std::numeric_limits<double>::quiet_NaN(); // NaN = compute from data, overrides per-axis if set
60 double voxelMaxX = std::numeric_limits<double>::quiet_NaN(); // NaN = compute from data
61 double voxelMaxY = std::numeric_limits<double>::quiet_NaN();
62 double voxelMaxZ = std::numeric_limits<double>::quiet_NaN();
63};
64
66extern const Parameters* p_;
67
69void setParameterValue(const std::string& parameterName, const std::string& parameterValue, const bool& fromPreset);
70
71} // namespace uvgformat
Definition voxelization.cpp:45
void setParameterValue(const std::string &parameterName, const std::string &parameterValue, const bool &fromPreset)
Definition parameters.cpp:77
void initializeParameterMap(Parameters &param)
Definition parameters.cpp:53
const Parameters * p_
Read-only view of the active parameters. nullptr until initializeFormat() is called.
Definition uvgformat.cpp:96
Definition parameters.hpp:48
double voxelMin
Definition parameters.hpp:55
double voxelMinZ
Definition parameters.hpp:58
double voxelMinX
Definition parameters.hpp:56
double voxelMaxY
Definition parameters.hpp:61
bool enableVoxelization
Definition parameters.hpp:53
double voxelMinY
Definition parameters.hpp:57
double voxelMaxZ
Definition parameters.hpp:62
double voxelMax
Definition parameters.hpp:59
std::string logLevel
Definition parameters.hpp:50
bool keepGeoRatio
Definition parameters.hpp:54
double voxelMaxX
Definition parameters.hpp:60
size_t geoPrecisionInput
Definition parameters.hpp:49