Ponca  94e4a36411c3364f6192f97adfa8ceee67834d6e
Point Cloud Analysis library
Loading...
Searching...
No Matches
covariancePlaneFit.hpp
1/*
2 Copyright (C) 2014 Nicolas Mellado <nmellado0@gmail.com>
3 Copyright (C) 2015 Gael Guennebaud <gael.guennebaud@inria.fr>
4
5 This Source Code Form is subject to the terms of the Mozilla Public
6 License, v. 2.0. If a copy of the MPL was not distributed with this
7 file, You can obtain one at http://mozilla.org/MPL/2.0/.
8*/
9
10#include PONCA_MULTIARCH_INCLUDE_STD(cmath)
11#include PONCA_MULTIARCH_INCLUDE_STD(limits)
12
13template < class DataPoint, class _NFilter, typename T>
16{
17 if (Base::finalize() == STABLE) {
18 if (Base::plane().isValid()) Base::m_eCurrentState = CONFLICT_ERROR_FOUND;
19 Base::setPlane(Base::m_solver.eigenvectors().col(0), Base::barycenterLocal());
20 }
21
22 return Base::m_eCurrentState;
23}
24
25template < class DataPoint, class _NFilter, typename T>
28{
29 return Base::m_solver.eigenvectors().transpose() * Base::getNeighborFilter().convertToLocalBasis(_q,
30 _isPositionVector);
31}
32
33template < class DataPoint, class _NFilter, typename T>
36{
37 return Base::getNeighborFilter().convertToGlobalBasis(Base::m_solver.eigenvectors().transpose().inverse() * _lq,
38 _isPositionVector);
39}
40
41
42
43template < class DataPoint, class _NFilter, int DiffType, typename T>
46{
47 PONCA_MULTIARCH_STD_MATH(sqrt);
48 PONCA_MULTIARCH_STD_MATH(numeric_limits);
49
50 Base::finalize();
51 // Test if base finalize end on a viable case (stable / unstable)
52 if (this->isReady())
53 {
54 VectorType barycenter = Base::barycenterLocal();
55 VectorArray dBarycenter = Base::barycenterDerivatives();
56
57 // pre-compute shifted eigenvalues to apply the pseudo inverse of C - lambda_0 I
58 Scalar epsilon = Scalar(2) * Eigen::NumTraits<Scalar>::epsilon();
59 Scalar consider_as_zero = Scalar(2) * numeric_limits<Scalar>::denorm_min();
60
61 // This is where the limitation to 3d comes from.
62 // \fixme Replace shift in 2d subspace by any subspace with co-dimension 1
63 Eigen::Matrix<Scalar,2,1> shifted_eivals = Base::m_solver.eigenvalues().template tail<2>().array() - Base::m_solver.eigenvalues()(0);
64 if(shifted_eivals(0) < consider_as_zero || shifted_eivals(0) < epsilon * shifted_eivals(1)) shifted_eivals(0) = 0;
65 if(shifted_eivals(1) < consider_as_zero) shifted_eivals(1) = 0;
66
67
68 for(int k=0; k<Base::NbDerivatives; ++k)
69 {
70 VectorType normal = Base::primitiveGradient();
71 // The derivative of 'normal' is the derivative of the smallest eigenvector.
72 // Since the covariance matrix is real and symmetric, it is equal to:
73 // n' = - (C - lambda_0 I)^+ C' n
74 // Where ^+ denotes the pseudo-inverse.
75 // Since we already performed the eigenvalue decomposition of the matrix C,
76 // we can directly apply the pseudo inverse by observing that:
77 // (C - lambda_0 I) = V (L - lambda_0 I) V^T
78 // where V is the eigenvector matrix, and L the eigenvalue diagonal matrix.
79 Eigen::Matrix<Scalar,2,1> z = - Base::m_solver.eigenvectors().template rightCols<2>().transpose() * (Base::m_dCov[k] * normal);
80 if(shifted_eivals(0)>0) z(0) /= shifted_eivals(0);
81 if(shifted_eivals(1)>0) z(1) /= shifted_eivals(1);
82 m_dNormal.col(k) = Base::m_solver.eigenvectors().template rightCols<2>() * z;
83
84 VectorType dDiff = dBarycenter.col(k);
85 if(k>0 || !Base::isScaleDer())
86 dDiff(Base::isScaleDer() ? k-1 : k) += 1;
87 m_dDist(k) = m_dNormal.col(k).dot(barycenter) + normal.dot(dDiff);
88 }
89 }
90
91 return Base::m_eCurrentState;
92}
[CovariancePlaneFit Definition]
typename Base::VectorArray VectorArray
Alias to vector derivatives array.
typename Base::VectorType VectorType
Alias to vector type.
typename DataPoint::Scalar Scalar
Alias to scalar type.
Plane fitting procedure using only points position.
typename Base::VectorType VectorType
Alias to vector type.
FIT_RESULT
Enum corresponding to the state of a fitting method (and what the finalize function returns)
Definition enums.h:15
@ CONFLICT_ERROR_FOUND
Multiple classes of the fitting procedure initialize the primitive.
Definition enums.h:27
@ STABLE
The fitting is stable and ready to use.
Definition enums.h:17