uvgVPCCenc 1.2.0
uvgVPCCenc is an open-source real-time V-PCC encoder library written in C++ from scratch.
Loading...
Searching...
No Matches
uvgFramePayload.hpp
Go to the documentation of this file.
1/*****************************************************************************
2 * This file is part of uvgVPCCenc V-PCC encoder.
3 *
4 * Copyright (c) 2024-present, 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 <cstdint>
39#include <stdexcept>
40#include <variant>
41#include <vector>
42
43#include "uvgutils/utils.hpp"
44
45namespace uvgformat {
46
49 std::vector<uvgutils::VectorN<uint16_t, 3>> geometry;
50};
51
55 std::vector<uvgutils::VectorN<uint16_t, 3>> geometry;
56 std::vector<uvgutils::VectorN<uint8_t, 3>> attribute;
57};
58
61 std::vector<uvgutils::VectorN<uint16_t, 3>> geometry;
62 std::vector<uvgutils::VectorN<uint8_t, 3>> attribute;
63 std::vector<uvgutils::VectorN<float, 3>> normals;
64};
65
67using uvgFramePayload = std::variant<GeometryOnly, GeometryRgb, GeometryRgbNormals>;
68
71inline GeometryRgb& getGeometryRgb(uvgFramePayload& data) { return std::get<GeometryRgb>(data); }
72
74inline const GeometryRgb& getGeometryRgb(const uvgFramePayload& data) { return std::get<GeometryRgb>(data); }
75
76} // namespace uvgformat
Definition voxelization.cpp:45
GeometryRgb & getGeometryRgb(uvgFramePayload &data)
Access the GeometryRgb alternative of an uvgFramePayload variant.
Definition uvgFramePayload.hpp:71
std::variant< GeometryOnly, GeometryRgb, GeometryRgbNormals > uvgFramePayload
Variant holding the active combination of point cloud attributes.
Definition uvgFramePayload.hpp:67
Geometry-only point cloud (no color or normals).
Definition uvgFramePayload.hpp:48
std::vector< uvgutils::VectorN< uint16_t, 3 > > geometry
Definition uvgFramePayload.hpp:49
Point cloud with geometry, RGB color and pre-computed normals (reserved for future use).
Definition uvgFramePayload.hpp:60
std::vector< uvgutils::VectorN< uint16_t, 3 > > geometry
Definition uvgFramePayload.hpp:61
std::vector< uvgutils::VectorN< float, 3 > > normals
Definition uvgFramePayload.hpp:63
std::vector< uvgutils::VectorN< uint8_t, 3 > > attribute
Definition uvgFramePayload.hpp:62
Definition uvgFramePayload.hpp:54
std::vector< uvgutils::VectorN< uint16_t, 3 > > geometry
Definition uvgFramePayload.hpp:55
std::vector< uvgutils::VectorN< uint8_t, 3 > > attribute
Definition uvgFramePayload.hpp:56