123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- // This file is part of libigl, a simple c++ geometry processing library.
- //
- // Copyright (C) 2014 Daniele Panozzo <daniele.panozzo@gmail.com>
- //
- // 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 "lscm.h"
- #include <igl/vector_area_matrix.h>
- #include <igl/cotmatrix.h>
- //#include <igl/kronecker_product.h>
- #include <igl/repdiag.h>
- #include <igl/min_quad_with_fixed.h>
- #include <igl/matlab_format.h>
- #include <iostream>
- IGL_INLINE void igl::lscm(
- const Eigen::MatrixXd& V,
- const Eigen::MatrixXi& F,
- const Eigen::VectorXi& b,
- const Eigen::MatrixXd& bc,
- Eigen::MatrixXd & V_uv)
- {
- using namespace Eigen;
- using namespace std;
-
- // Assemble the area matrix (note that A is #Vx2 by #Vx2)
- SparseMatrix<double> A;
- igl::vector_area_matrix(F,A);
- // Assemble the cotan laplacian matrix
- SparseMatrix<double> L;
- igl::cotmatrix(V,F,L);
- SparseMatrix<double> L_flat;
- repdiag(L,2,L_flat);
- VectorXi b_flat(b.size()*bc.cols(),1);
- VectorXd bc_flat(bc.size(),1);
- for(int c = 0;c<bc.cols();c++)
- {
- b_flat.block(c*b.size(),0,b.rows(),1) = c*V.rows() + b.array();
- bc_flat.block(c*bc.rows(),0,bc.rows(),1) = bc.col(c);
- }
-
- // Minimize the LSCM energy
- SparseMatrix<double> Q = -L_flat + 2.*A;
- const VectorXd B_flat = VectorXd::Zero(V.rows()*2);
- igl::min_quad_with_fixed_data<double> data;
- igl::min_quad_with_fixed_precompute(Q,b_flat,SparseMatrix<double>(),true,data);
- MatrixXd W_flat;
- if(!min_quad_with_fixed_solve(data,B_flat,bc_flat,VectorXd(),W_flat))
- assert(false);
- assert(W_flat.rows() == V.rows()*2);
- V_uv.resize(V.rows(),2);
- for (unsigned i=0;i<V_uv.cols();++i)
- {
- V_uv.col(i) = W_flat.block(V_uv.rows()*i,0,V_uv.rows(),1);
- }
- }
- #ifdef IGL_STATIC_LIBRARY
- // Explicit template specialization
- #endif
|