uvgVPCCenc 1.0.0
uvgVPCCenc is an open-source real-time V-PCC encoder library written in C++ from scratch.
Loading...
Searching...
No Matches
abstract2DMapEncoder.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 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 the Tampere University or 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 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
25 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26 * INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION HOWEVER CAUSED AND ON
28 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 * INCLUDING NEGLIGENCE OR OTHERWISE ARISING IN ANY WAY OUT OF THE USE OF THIS
31 ****************************************************************************/
32
33#pragma once
34
36
37#include <fstream>
38#include "uvgvpcc/uvgvpcc.hpp"
39
41
42// All 2D encoder should derived from this class. Notice that there is one 2D encoder for each map (occupancy, geometry and attribute). Static functions can't be overrided. For example, the handling of the function pointer is not done by the derived class, as it should always be the same whatever the 2D encoder used.
44public:
46 virtual ~Abstract2DMapEncoder() = default;
47
48 virtual void configureGOFEncoder(const std::shared_ptr<uvgvpcc_enc::GOF>& gof, const ENCODER_TYPE& encoderType) = 0;
49 virtual void encodeGOFMaps(std::shared_ptr<uvgvpcc_enc::GOF>& gof) = 0;
50
51protected:
52
53
54 // 2D encoders parameters (should be common with all 2D encoders)
55
56 // Do no change between GOFs
58 std::string encoderName_; // Use for debugging and log
60 size_t nbThread_;
61 std::string preset_;
62 std::string format_;
63 std::string mode_;
64 size_t qp_;
65
66 // Initialized for each GOF
67 size_t width_;
68 size_t height_;
69};
70
71inline void writeBitstreamToFile(const std::vector<uint8_t>& bitstream, const std::string& filename) {
72
73 std::ofstream file(filename, std::ios::binary);
74 if (!file.is_open()) {
75 throw std::runtime_error("Failed to open file for writing bitstream: " + filename);
76 }
77 file.write(reinterpret_cast<const char*>(bitstream.data()), bitstream.size());
78 file.close();
79}
ENCODER_TYPE
Definition abstract2DMapEncoder.hpp:40
@ OCCUPANCY
Definition abstract2DMapEncoder.hpp:40
@ ATTRIBUTE
Definition abstract2DMapEncoder.hpp:40
@ GEOMETRY
Definition abstract2DMapEncoder.hpp:40
void writeBitstreamToFile(const std::vector< uint8_t > &bitstream, const std::string &filename)
Definition abstract2DMapEncoder.hpp:71
Definition abstract2DMapEncoder.hpp:43
size_t nbThread_
Definition abstract2DMapEncoder.hpp:60
std::string format_
Definition abstract2DMapEncoder.hpp:62
Abstract2DMapEncoder()=default
size_t height_
Definition abstract2DMapEncoder.hpp:68
std::string mode_
Definition abstract2DMapEncoder.hpp:63
size_t width_
Definition abstract2DMapEncoder.hpp:67
std::string encoderName_
Definition abstract2DMapEncoder.hpp:58
virtual ~Abstract2DMapEncoder()=default
bool lossLess_
Definition abstract2DMapEncoder.hpp:59
virtual void encodeGOFMaps(std::shared_ptr< uvgvpcc_enc::GOF > &gof)=0
virtual void configureGOFEncoder(const std::shared_ptr< uvgvpcc_enc::GOF > &gof, const ENCODER_TYPE &encoderType)=0
size_t qp_
Definition abstract2DMapEncoder.hpp:64
std::string preset_
Definition abstract2DMapEncoder.hpp:61
ENCODER_TYPE encoderType_
Definition abstract2DMapEncoder.hpp:57