uvgVPCCenc 1.0.0
uvgVPCCenc is an open-source real-time V-PCC encoder library written in C++ from scratch.
Loading...
Searching...
No Matches
normalComputation.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
34
35#pragma once
36
37#include "uvgvpcc/uvgvpcc.hpp"
38
39using namespace uvgvpcc_enc;
40
41
42namespace NormalComputation {
43
44void computeNormals(const std::shared_ptr<uvgvpcc_enc::Frame>& frame, std::vector<uvgvpcc_enc::Vector3<double>>& normals,
45 const std::vector<uvgvpcc_enc::Vector3<typeGeometryInput>>& pointsGeometry,
46 const std::vector<std::vector<size_t>>& pointsNNList);
47
48void computeNormal(uvgvpcc_enc::Vector3<double>& normal, const std::vector<uvgvpcc_enc::Vector3<typeGeometryInput>>& pointsGeometry,
49 const uvgvpcc_enc::Vector3<typeGeometryInput>& point, const std::vector<size_t>& pointNn, const size_t nnCount);
50void diagonalize(const std::vector<uvgvpcc_enc::Vector3<double>>& A, std::vector<uvgvpcc_enc::Vector3<double>>& Q,
51 std::vector<uvgvpcc_enc::Vector3<double>>& D);
52
53void computeCovMat(std::vector<uvgvpcc_enc::Vector3<double>>& covMat, const uvgvpcc_enc::Vector3<double>& bary, const size_t nnCount,
54 const std::vector<size_t>& nnIndices, const std::vector<uvgvpcc_enc::Vector3<typeGeometryInput>>& pointsGeometry);
55
56} // namespace NormalComputation
Definition utils.hpp:59
Definition normalComputation.cpp:53
void computeCovMat(std::vector< uvgvpcc_enc::Vector3< double > > &covMat, const uvgvpcc_enc::Vector3< double > &bary, const size_t nnCount, const std::vector< size_t > &nnIndices, const std::vector< uvgvpcc_enc::Vector3< typeGeometryInput > > &pointsGeometry)
Definition normalComputation.cpp:112
void computeNormals(const std::shared_ptr< uvgvpcc_enc::Frame > &frame, std::vector< uvgvpcc_enc::Vector3< double > > &normals, const std::vector< uvgvpcc_enc::Vector3< typeGeometryInput > > &pointsGeometry, const std::vector< std::vector< size_t > > &pointsNNList)
Definition normalComputation.cpp:55
void computeNormal(uvgvpcc_enc::Vector3< double > &normal, const std::vector< uvgvpcc_enc::Vector3< typeGeometryInput > > &pointsGeometry, const uvgvpcc_enc::Vector3< typeGeometryInput > &point, const std::vector< size_t > &pointNn, const size_t nnCount)
Definition normalComputation.cpp:78
void diagonalize(const std::vector< uvgvpcc_enc::Vector3< double > > &A, std::vector< uvgvpcc_enc::Vector3< double > > &Q, std::vector< uvgvpcc_enc::Vector3< double > > &D)
Definition normalComputation.cpp:146
Definition log.hpp:43