uvgVPCCenc 1.2.0
uvgVPCCenc is an open-source real-time V-PCC encoder library written in C++ from scratch.
Loading...
Searching...
No Matches
Classes | Namespaces | Typedefs | Functions
uvgFramePayload.hpp File Reference
#include <cstdint>
#include <stdexcept>
#include <variant>
#include <vector>
#include "uvgutils/utils.hpp"
Include dependency graph for uvgFramePayload.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  uvgformat::GeometryOnly
 Geometry-only point cloud (no color or normals). More...
 
struct  uvgformat::GeometryRgb
 
struct  uvgformat::GeometryRgbNormals
 Point cloud with geometry, RGB color and pre-computed normals (reserved for future use). More...
 

Namespaces

namespace  uvgformat
 

Typedefs

using uvgformat::uvgFramePayload = std::variant< GeometryOnly, GeometryRgb, GeometryRgbNormals >
 Variant holding the active combination of point cloud attributes.
 

Functions

GeometryRgbuvgformat::getGeometryRgb (uvgFramePayload &data)
 Access the GeometryRgb alternative of an uvgFramePayload variant.
 
const GeometryRgbuvgformat::getGeometryRgb (const uvgFramePayload &data)
 Const overload.