| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- // This file is part of libigl, a simple c++ geometry processing library.
- //
- // Copyright (C) 2013 Alec Jacobson <[email protected]>
- //
- // This Source Code Form is subject to the terms of the Mozilla Public License
- // v. 2.0. If a copy of the MPL was not distributed with this file, You can
- // obtain one at http://mozilla.org/MPL/2.0/.
- #include "polar_dec.h"
- #include "polar_svd.h"
- #include "PlainMatrix.h"
- #ifdef _WIN32
- #else
- # include <fenv.h>
- #endif
- #include <cmath>
- #include <Eigen/Eigenvalues>
- #include <iostream>
- #include <cfenv>
- // From Olga's CGAL mentee's ARAP code
- template <
- typename DerivedA,
- typename DerivedR,
- typename DerivedT,
- typename DerivedU,
- typename DerivedS,
- typename DerivedV>
- IGL_INLINE void igl::polar_dec(
- const Eigen::MatrixBase<DerivedA> & A,
- const bool includeReflections,
- Eigen::PlainObjectBase<DerivedR> & R,
- Eigen::PlainObjectBase<DerivedT> & T,
- Eigen::PlainObjectBase<DerivedU> & U,
- Eigen::PlainObjectBase<DerivedS> & S,
- Eigen::PlainObjectBase<DerivedV> & V)
- {
- typedef typename DerivedA::Scalar Scalar;
- const Scalar th = std::sqrt(Eigen::NumTraits<Scalar>::dummy_precision());
- Eigen::SelfAdjointEigenSolver<DerivedA> eig;
- feclearexcept(FE_UNDERFLOW);
- eig.computeDirect(A.transpose()*A);
- if(fetestexcept(FE_UNDERFLOW) || eig.eigenvalues()(0)/eig.eigenvalues()(2)<th)
- {
- std::cout<<"resorting to svd 1..."<<std::endl;
- return polar_svd(A,includeReflections,R,T,U,S,V);
- }
- S = eig.eigenvalues().cwiseSqrt();
- V = eig.eigenvectors();
- U = A * V;
- R = U * S.asDiagonal().inverse() * V.transpose();
- T = V * S.asDiagonal() * V.transpose();
- S = S.reverse().eval();
- V = V.rowwise().reverse().eval();
- U = U.rowwise().reverse().eval() * S.asDiagonal().inverse();
- if(!includeReflections && R.determinant() < 0)
- {
- // Annoyingly the .eval() is necessary
- auto W = V.eval();
- const auto & SVT = S.asDiagonal() * V.adjoint();
- W.col(V.cols()-1) *= -1.;
- R = U*W.transpose();
- T = W*SVT;
- }
- if(std::fabs(R.squaredNorm()-3.) > th)
- {
- std::cout<<"resorting to svd 2..."<<std::endl;
- return polar_svd(A,includeReflections,R,T,U,S,V);
- }
- }
- template <
- typename DerivedA,
- typename DerivedR,
- typename DerivedT>
- IGL_INLINE void igl::polar_dec(
- const Eigen::MatrixBase<DerivedA> & A,
- const bool includeReflections,
- Eigen::PlainObjectBase<DerivedR> & R,
- Eigen::PlainObjectBase<DerivedT> & T)
- {
- PlainMatrix<DerivedA> U;
- PlainMatrix<DerivedA> V;
- Eigen::Matrix<typename DerivedA::Scalar,DerivedA::RowsAtCompileTime,1> S;
- return igl::polar_dec(A,includeReflections,R,T,U,S,V);
- }
- template <
- typename DerivedA,
- typename DerivedR,
- typename DerivedT,
- typename DerivedU,
- typename DerivedS,
- typename DerivedV>
- IGL_INLINE void igl::polar_dec(
- const Eigen::MatrixBase<DerivedA> & A,
- Eigen::PlainObjectBase<DerivedR> & R,
- Eigen::PlainObjectBase<DerivedT> & T,
- Eigen::PlainObjectBase<DerivedU> & U,
- Eigen::PlainObjectBase<DerivedS> & S,
- Eigen::PlainObjectBase<DerivedV> & V)
- {
- // do **not** include reflections (for backwards compatibility)
- return igl::polar_dec(A,false,R,T,U,S,V);
- }
- template <
- typename DerivedA,
- typename DerivedR,
- typename DerivedT>
- IGL_INLINE void igl::polar_dec(
- const Eigen::MatrixBase<DerivedA> & A,
- Eigen::PlainObjectBase<DerivedR> & R,
- Eigen::PlainObjectBase<DerivedT> & T)
- {
- // do **not** include reflections (for backwards compatibility)
- return igl::polar_dec(A,false,R,T);
- }
- #ifdef IGL_STATIC_LIBRARY
- // Explicit template instantiation
- // generated by autoexplicit.sh
- template void igl::polar_dec<Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<double, 3, 3, 0, 3, 3>, Eigen::Matrix<double, -1, -1, 0, -1, -1>>(Eigen::MatrixBase<Eigen::Matrix<double, -1, -1, 0, -1, -1>> const&, bool, Eigen::PlainObjectBase<Eigen::Matrix<double, 3, 3, 0, 3, 3>>&, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1>>&);
- // generated by autoexplicit.sh
- template void igl::polar_dec<Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<double, 2, 2, 0, 2, 2>, Eigen::Matrix<double, -1, -1, 0, -1, -1>>(Eigen::MatrixBase<Eigen::Matrix<double, -1, -1, 0, -1, -1>> const&, bool, Eigen::PlainObjectBase<Eigen::Matrix<double, 2, 2, 0, 2, 2>>&, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1>>&);
- #endif
|