├── README.md ├── VC++(from scratch) ├── Eigen │ ├── CMakeLists.txt │ ├── Cholesky │ ├── CholmodSupport │ ├── Core │ ├── Dense │ ├── Eigen │ ├── Eigenvalues │ ├── Geometry │ ├── Householder │ ├── IterativeLinearSolvers │ ├── Jacobi │ ├── LU │ ├── MetisSupport │ ├── OrderingMethods │ ├── PaStiXSupport │ ├── PardisoSupport │ ├── QR │ ├── QtAlignedMalloc │ ├── SPQRSupport │ ├── SVD │ ├── Sparse │ ├── SparseCholesky │ ├── SparseCore │ ├── SparseLU │ ├── SparseQR │ ├── StdDeque │ ├── StdList │ ├── StdVector │ ├── SuperLUSupport │ ├── UmfPackSupport │ └── src │ │ ├── Cholesky │ │ ├── LDLT.h │ │ ├── LLT.h │ │ └── LLT_LAPACKE.h │ │ ├── CholmodSupport │ │ └── CholmodSupport.h │ │ ├── Core │ │ ├── Array.h │ │ ├── ArrayBase.h │ │ ├── ArrayWrapper.h │ │ ├── Assign.h │ │ ├── AssignEvaluator.h │ │ ├── Assign_MKL.h │ │ ├── BandMatrix.h │ │ ├── Block.h │ │ ├── BooleanRedux.h │ │ ├── CommaInitializer.h │ │ ├── ConditionEstimator.h │ │ ├── CoreEvaluators.h │ │ ├── CoreIterators.h │ │ ├── CwiseBinaryOp.h │ │ ├── CwiseNullaryOp.h │ │ ├── CwiseTernaryOp.h │ │ ├── CwiseUnaryOp.h │ │ ├── CwiseUnaryView.h │ │ ├── DenseBase.h │ │ ├── DenseCoeffsBase.h │ │ ├── DenseStorage.h │ │ ├── Diagonal.h │ │ ├── DiagonalMatrix.h │ │ ├── DiagonalProduct.h │ │ ├── Dot.h │ │ ├── EigenBase.h │ │ ├── ForceAlignedAccess.h │ │ ├── Fuzzy.h │ │ ├── GeneralProduct.h │ │ ├── GenericPacketMath.h │ │ ├── GlobalFunctions.h │ │ ├── IO.h │ │ ├── Inverse.h │ │ ├── Map.h │ │ ├── MapBase.h │ │ ├── MathFunctions.h │ │ ├── MathFunctionsImpl.h │ │ ├── Matrix.h │ │ ├── MatrixBase.h │ │ ├── NestByValue.h │ │ ├── NoAlias.h │ │ ├── NumTraits.h │ │ ├── PermutationMatrix.h │ │ ├── PlainObjectBase.h │ │ ├── Product.h │ │ ├── ProductEvaluators.h │ │ ├── Random.h │ │ ├── Redux.h │ │ ├── Ref.h │ │ ├── Replicate.h │ │ ├── ReturnByValue.h │ │ ├── Reverse.h │ │ ├── Select.h │ │ ├── SelfAdjointView.h │ │ ├── SelfCwiseBinaryOp.h │ │ ├── Solve.h │ │ ├── SolveTriangular.h │ │ ├── SolverBase.h │ │ ├── StableNorm.h │ │ ├── Stride.h │ │ ├── Swap.h │ │ ├── Transpose.h │ │ ├── Transpositions.h │ │ ├── TriangularMatrix.h │ │ ├── VectorBlock.h │ │ ├── VectorwiseOp.h │ │ ├── Visitor.h │ │ ├── arch │ │ │ ├── AVX │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ └── TypeCasting.h │ │ │ ├── AVX512 │ │ │ │ ├── MathFunctions.h │ │ │ │ └── PacketMath.h │ │ │ ├── AltiVec │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ └── PacketMath.h │ │ │ ├── CUDA │ │ │ │ ├── Complex.h │ │ │ │ ├── Half.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ ├── PacketMathHalf.h │ │ │ │ └── TypeCasting.h │ │ │ ├── Default │ │ │ │ ├── ConjHelper.h │ │ │ │ └── Settings.h │ │ │ ├── NEON │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ └── PacketMath.h │ │ │ ├── SSE │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ └── TypeCasting.h │ │ │ └── ZVector │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ └── PacketMath.h │ │ ├── functors │ │ │ ├── AssignmentFunctors.h │ │ │ ├── BinaryFunctors.h │ │ │ ├── NullaryFunctors.h │ │ │ ├── StlFunctors.h │ │ │ ├── TernaryFunctors.h │ │ │ └── UnaryFunctors.h │ │ ├── products │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ ├── GeneralMatrixMatrix.h │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ ├── GeneralMatrixVector.h │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ ├── Parallelizer.h │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ ├── SelfadjointMatrixVector.h │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ ├── SelfadjointProduct.h │ │ │ ├── SelfadjointRank2Update.h │ │ │ ├── TriangularMatrixMatrix.h │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ ├── TriangularMatrixVector.h │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ ├── TriangularSolverMatrix.h │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ └── TriangularSolverVector.h │ │ └── util │ │ │ ├── BlasUtil.h │ │ │ ├── Constants.h │ │ │ ├── DisableStupidWarnings.h │ │ │ ├── ForwardDeclarations.h │ │ │ ├── MKL_support.h │ │ │ ├── Macros.h │ │ │ ├── Memory.h │ │ │ ├── Meta.h │ │ │ ├── NonMPL2.h │ │ │ ├── ReenableStupidWarnings.h │ │ │ ├── StaticAssert.h │ │ │ └── XprHelper.h │ │ ├── Eigenvalues │ │ ├── ComplexEigenSolver.h │ │ ├── ComplexSchur.h │ │ ├── ComplexSchur_LAPACKE.h │ │ ├── EigenSolver.h │ │ ├── GeneralizedEigenSolver.h │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ ├── HessenbergDecomposition.h │ │ ├── MatrixBaseEigenvalues.h │ │ ├── RealQZ.h │ │ ├── RealSchur.h │ │ ├── RealSchur_LAPACKE.h │ │ ├── SelfAdjointEigenSolver.h │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ └── Tridiagonalization.h │ │ ├── Geometry │ │ ├── AlignedBox.h │ │ ├── AngleAxis.h │ │ ├── EulerAngles.h │ │ ├── Homogeneous.h │ │ ├── Hyperplane.h │ │ ├── OrthoMethods.h │ │ ├── ParametrizedLine.h │ │ ├── Quaternion.h │ │ ├── Rotation2D.h │ │ ├── RotationBase.h │ │ ├── Scaling.h │ │ ├── Transform.h │ │ ├── Translation.h │ │ ├── Umeyama.h │ │ └── arch │ │ │ └── Geometry_SSE.h │ │ ├── Householder │ │ ├── BlockHouseholder.h │ │ ├── Householder.h │ │ └── HouseholderSequence.h │ │ ├── IterativeLinearSolvers │ │ ├── BasicPreconditioners.h │ │ ├── BiCGSTAB.h │ │ ├── ConjugateGradient.h │ │ ├── IncompleteCholesky.h │ │ ├── IncompleteLUT.h │ │ ├── IterativeSolverBase.h │ │ ├── LeastSquareConjugateGradient.h │ │ └── SolveWithGuess.h │ │ ├── Jacobi │ │ └── Jacobi.h │ │ ├── LU │ │ ├── Determinant.h │ │ ├── FullPivLU.h │ │ ├── InverseImpl.h │ │ ├── PartialPivLU.h │ │ ├── PartialPivLU_LAPACKE.h │ │ └── arch │ │ │ └── Inverse_SSE.h │ │ ├── MetisSupport │ │ └── MetisSupport.h │ │ ├── OrderingMethods │ │ ├── Amd.h │ │ ├── Eigen_Colamd.h │ │ └── Ordering.h │ │ ├── PaStiXSupport │ │ └── PaStiXSupport.h │ │ ├── PardisoSupport │ │ └── PardisoSupport.h │ │ ├── QR │ │ ├── ColPivHouseholderQR.h │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ ├── CompleteOrthogonalDecomposition.h │ │ ├── FullPivHouseholderQR.h │ │ ├── HouseholderQR.h │ │ └── HouseholderQR_LAPACKE.h │ │ ├── SPQRSupport │ │ └── SuiteSparseQRSupport.h │ │ ├── SVD │ │ ├── BDCSVD.h │ │ ├── JacobiSVD.h │ │ ├── JacobiSVD_LAPACKE.h │ │ ├── SVDBase.h │ │ └── UpperBidiagonalization.h │ │ ├── SparseCholesky │ │ ├── SimplicialCholesky.h │ │ └── SimplicialCholesky_impl.h │ │ ├── SparseCore │ │ ├── AmbiVector.h │ │ ├── CompressedStorage.h │ │ ├── ConservativeSparseSparseProduct.h │ │ ├── MappedSparseMatrix.h │ │ ├── SparseAssign.h │ │ ├── SparseBlock.h │ │ ├── SparseColEtree.h │ │ ├── SparseCompressedBase.h │ │ ├── SparseCwiseBinaryOp.h │ │ ├── SparseCwiseUnaryOp.h │ │ ├── SparseDenseProduct.h │ │ ├── SparseDiagonalProduct.h │ │ ├── SparseDot.h │ │ ├── SparseFuzzy.h │ │ ├── SparseMap.h │ │ ├── SparseMatrix.h │ │ ├── SparseMatrixBase.h │ │ ├── SparsePermutation.h │ │ ├── SparseProduct.h │ │ ├── SparseRedux.h │ │ ├── SparseRef.h │ │ ├── SparseSelfAdjointView.h │ │ ├── SparseSolverBase.h │ │ ├── SparseSparseProductWithPruning.h │ │ ├── SparseTranspose.h │ │ ├── SparseTriangularView.h │ │ ├── SparseUtil.h │ │ ├── SparseVector.h │ │ ├── SparseView.h │ │ └── TriangularSolver.h │ │ ├── SparseLU │ │ ├── SparseLU.h │ │ ├── SparseLUImpl.h │ │ ├── SparseLU_Memory.h │ │ ├── SparseLU_Structs.h │ │ ├── SparseLU_SupernodalMatrix.h │ │ ├── SparseLU_Utils.h │ │ ├── SparseLU_column_bmod.h │ │ ├── SparseLU_column_dfs.h │ │ ├── SparseLU_copy_to_ucol.h │ │ ├── SparseLU_gemm_kernel.h │ │ ├── SparseLU_heap_relax_snode.h │ │ ├── SparseLU_kernel_bmod.h │ │ ├── SparseLU_panel_bmod.h │ │ ├── SparseLU_panel_dfs.h │ │ ├── SparseLU_pivotL.h │ │ ├── SparseLU_pruneL.h │ │ └── SparseLU_relax_snode.h │ │ ├── SparseQR │ │ └── SparseQR.h │ │ ├── StlSupport │ │ ├── StdDeque.h │ │ ├── StdList.h │ │ ├── StdVector.h │ │ └── details.h │ │ ├── SuperLUSupport │ │ └── SuperLUSupport.h │ │ ├── UmfPackSupport │ │ └── UmfPackSupport.h │ │ ├── misc │ │ ├── Image.h │ │ ├── Kernel.h │ │ ├── RealSvd2x2.h │ │ ├── blas.h │ │ ├── lapack.h │ │ ├── lapacke.h │ │ └── lapacke_mangling.h │ │ └── plugins │ │ ├── ArrayCwiseBinaryOps.h │ │ ├── ArrayCwiseUnaryOps.h │ │ ├── BlockMethods.h │ │ ├── CommonCwiseBinaryOps.h │ │ ├── CommonCwiseUnaryOps.h │ │ ├── MatrixCwiseBinaryOps.h │ │ └── MatrixCwiseUnaryOps.h ├── demo │ ├── idxF.txt │ ├── initialTemplate.ply │ ├── output.ply │ ├── target.ply │ ├── target.pp │ ├── template.ply │ └── weights.txt ├── faceDenseRegistration.cpp ├── meshdata.cpp ├── meshdata.h ├── mkl_solve_eq.cpp └── mkl_solve_eq.h ├── VC++(with initializations by NICP) ├── demo │ ├── MRA_txt │ │ ├── M0_all.txt │ │ ├── M0_edges.txt │ │ ├── M0_fixed.txt │ │ ├── M0_free.txt │ │ ├── M1_all.txt │ │ ├── M1_edges.txt │ │ ├── M1_fixed.txt │ │ ├── M1_free.txt │ │ ├── M2_all.txt │ │ ├── M2_edges.txt │ │ ├── M2_fixed.txt │ │ ├── M2_free.txt │ │ ├── M3_free.txt │ │ ├── M_free.txt │ │ ├── idxD.txt │ │ ├── idxE.txt │ │ ├── idxF.txt │ │ ├── idxK.txt │ │ └── weight_v.txt │ ├── command.txt │ ├── faceDenseRegistration.exe │ ├── plyInput │ │ ├── target1.ply │ │ └── target2.ply │ ├── plyOutput │ │ ├── target1.ply │ │ └── target2.ply │ └── template.ply ├── faceDenseRegistration.cpp ├── meshdata.cpp ├── meshdata.h ├── mkl_solve_eq.cpp └── mkl_solve_eq.h ├── figures ├── Registration_example.png ├── hand_example.png ├── mesh_detailed_structure.png └── step_example.png └── matlab ├── Dfield.mat ├── computeVertexRing_k.m ├── compute_geo_dis ├── computeGeodesicTemplate.m ├── geo_map.ply ├── heat_geodesic.m ├── jetmap.mat └── showGeodiscHeat.m ├── demo_dense_registration.m ├── output_step ├── 0.ply ├── 1.ply ├── 10.ply ├── 11.ply ├── 12.ply ├── 13.ply ├── 14.ply ├── 15.ply ├── 16.ply ├── 17.ply ├── 18.ply ├── 19.ply ├── 2.ply ├── 20.ply ├── 21.ply ├── 22.ply ├── 23.ply ├── 24.ply ├── 25.ply ├── 26.ply ├── 27.ply ├── 28.ply ├── 29.ply ├── 3.ply ├── 30.ply ├── 4.ply ├── 5.ply ├── 6.ply ├── 7.ply ├── 8.ply └── 9.ply ├── plyRead.m ├── point2trimesh.m ├── pp1.png ├── rigidTransform3D.m ├── rigidTransform3DW.m ├── target.ply ├── target.pp ├── template.ply ├── template.pp └── writePlyFile.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/README.md -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/CMakeLists.txt -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/Cholesky -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/CholmodSupport -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/Core -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/Dense -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/Eigen -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/Eigenvalues -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/Geometry -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/Householder -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/Jacobi -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/LU -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/MetisSupport -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/OrderingMethods -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/PardisoSupport -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/QR -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/SPQRSupport -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/SVD -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/Sparse -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/SparseCholesky -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/SparseCore -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/SparseLU -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/SparseQR -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/StdDeque -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/StdList -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/StdVector -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Cholesky/LLT_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Cholesky/LLT_LAPACKE.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/CholmodSupport/CholmodSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/CholmodSupport/CholmodSupport.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/AssignEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/AssignEvaluator.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/BooleanRedux.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/CommaInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/CommaInitializer.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/ConditionEstimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/ConditionEstimator.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/CoreEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/CoreEvaluators.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/CoreIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/CoreIterators.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/CwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/CwiseBinaryOp.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/CwiseNullaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/CwiseNullaryOp.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/CwiseTernaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/CwiseTernaryOp.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/CwiseUnaryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/CwiseUnaryView.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/DenseCoeffsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/DenseCoeffsBase.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/DiagonalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/DiagonalMatrix.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/DiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/DiagonalProduct.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/ForceAlignedAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/ForceAlignedAccess.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/GeneralProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/GeneralProduct.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/GenericPacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/GenericPacketMath.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/GlobalFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/GlobalFunctions.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/MathFunctions.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/MathFunctionsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/MathFunctionsImpl.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/PermutationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/PermutationMatrix.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/PlainObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/PlainObjectBase.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/ProductEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/ProductEvaluators.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/ReturnByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/ReturnByValue.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/SelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/SelfAdjointView.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/SelfCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/SelfCwiseBinaryOp.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/SolveTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/SolveTriangular.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Transpositions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Transpositions.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/TriangularMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/TriangularMatrix.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/AVX/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/AVX/Complex.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/AVX/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/AVX/MathFunctions.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/AVX/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/AVX/PacketMath.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/AVX/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/AVX/TypeCasting.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/AVX512/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/AVX512/MathFunctions.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/AVX512/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/AVX512/PacketMath.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/AltiVec/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/AltiVec/Complex.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/AltiVec/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/AltiVec/MathFunctions.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/AltiVec/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/AltiVec/PacketMath.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/CUDA/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/CUDA/Complex.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/CUDA/Half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/CUDA/Half.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/CUDA/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/CUDA/MathFunctions.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/CUDA/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/CUDA/PacketMath.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/CUDA/PacketMathHalf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/CUDA/PacketMathHalf.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/CUDA/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/CUDA/TypeCasting.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/Default/ConjHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/Default/ConjHelper.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/Default/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/Default/Settings.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/NEON/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/NEON/Complex.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/NEON/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/NEON/MathFunctions.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/NEON/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/NEON/PacketMath.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/SSE/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/SSE/Complex.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/SSE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/SSE/MathFunctions.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/SSE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/SSE/PacketMath.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/SSE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/SSE/TypeCasting.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/ZVector/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/ZVector/Complex.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/ZVector/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/ZVector/MathFunctions.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/arch/ZVector/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/arch/ZVector/PacketMath.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/functors/AssignmentFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/functors/AssignmentFunctors.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/functors/BinaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/functors/BinaryFunctors.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/functors/NullaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/functors/NullaryFunctors.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/functors/StlFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/functors/StlFunctors.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/functors/TernaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/functors/TernaryFunctors.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/functors/UnaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/functors/UnaryFunctors.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/products/GeneralBlockPanelKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/products/GeneralBlockPanelKernel.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/products/GeneralMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/products/GeneralMatrixMatrix.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/products/GeneralMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/products/GeneralMatrixVector.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/products/Parallelizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/products/Parallelizer.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/products/SelfadjointMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/products/SelfadjointMatrixMatrix.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/products/SelfadjointMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/products/SelfadjointMatrixVector.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/products/SelfadjointProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/products/SelfadjointProduct.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/products/SelfadjointRank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/products/SelfadjointRank2Update.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/products/TriangularMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/products/TriangularMatrixMatrix.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/products/TriangularMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/products/TriangularMatrixVector.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/products/TriangularSolverMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/products/TriangularSolverMatrix.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/products/TriangularSolverVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/products/TriangularSolverVector.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/util/BlasUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/util/BlasUtil.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/util/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/util/Constants.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/util/DisableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/util/DisableStupidWarnings.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/util/ForwardDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/util/ForwardDeclarations.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/util/MKL_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/util/MKL_support.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/util/NonMPL2.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/util/ReenableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/util/ReenableStupidWarnings.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/util/StaticAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/util/StaticAssert.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Core/util/XprHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Core/util/XprHelper.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Eigenvalues/ComplexEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Eigenvalues/ComplexEigenSolver.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Eigenvalues/ComplexSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Eigenvalues/ComplexSchur.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Eigenvalues/EigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Eigenvalues/EigenSolver.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Eigenvalues/HessenbergDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Eigenvalues/HessenbergDecomposition.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Eigenvalues/RealQZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Eigenvalues/RealQZ.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Eigenvalues/RealSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Eigenvalues/RealSchur.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Eigenvalues/Tridiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Eigenvalues/Tridiagonalization.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Geometry/EulerAngles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Geometry/EulerAngles.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Geometry/Homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Geometry/Homogeneous.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Geometry/OrthoMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Geometry/OrthoMethods.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Geometry/ParametrizedLine.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Geometry/Quaternion.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Geometry/RotationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Geometry/RotationBase.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Geometry/Transform.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Geometry/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Geometry/Translation.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Geometry/arch/Geometry_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Geometry/arch/Geometry_SSE.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Householder/BlockHouseholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Householder/BlockHouseholder.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Householder/Householder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Householder/Householder.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Householder/HouseholderSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Householder/HouseholderSequence.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/LU/PartialPivLU_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/LU/PartialPivLU_LAPACKE.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/LU/arch/Inverse_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/LU/arch/Inverse_SSE.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/MetisSupport/MetisSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/MetisSupport/MetisSupport.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/OrderingMethods/Amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/OrderingMethods/Amd.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/OrderingMethods/Eigen_Colamd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/OrderingMethods/Eigen_Colamd.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/OrderingMethods/Ordering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/OrderingMethods/Ordering.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/PaStiXSupport/PaStiXSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/PaStiXSupport/PaStiXSupport.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/PardisoSupport/PardisoSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/PardisoSupport/PardisoSupport.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/QR/ColPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/QR/ColPivHouseholderQR.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/QR/CompleteOrthogonalDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/QR/CompleteOrthogonalDecomposition.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/QR/FullPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/QR/FullPivHouseholderQR.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/QR/HouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/QR/HouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SVD/JacobiSVD_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SVD/JacobiSVD_LAPACKE.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SVD/UpperBidiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SVD/UpperBidiagonalization.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCholesky/SimplicialCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCholesky/SimplicialCholesky.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/AmbiVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/AmbiVector.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/CompressedStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/CompressedStorage.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/MappedSparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/MappedSparseMatrix.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseAssign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseAssign.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseBlock.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseColEtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseColEtree.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseCompressedBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseCompressedBase.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseCwiseBinaryOp.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseCwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseCwiseUnaryOp.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseDenseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseDenseProduct.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseDiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseDiagonalProduct.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseDot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseDot.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseFuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseFuzzy.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseMap.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseMatrix.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseMatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseMatrixBase.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparsePermutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparsePermutation.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseProduct.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseRedux.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseRef.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseSelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseSelfAdjointView.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseSolverBase.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseSparseProductWithPruning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseSparseProductWithPruning.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseTranspose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseTranspose.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseTriangularView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseTriangularView.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseUtil.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseVector.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/SparseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/SparseView.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseCore/TriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseCore/TriangularSolver.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseLU/SparseLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseLU/SparseLU.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseLU/SparseLUImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseLU/SparseLUImpl.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseLU/SparseLU_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseLU/SparseLU_Memory.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseLU/SparseLU_Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseLU/SparseLU_Structs.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseLU/SparseLU_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseLU/SparseLU_Utils.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseLU/SparseLU_column_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseLU/SparseLU_column_bmod.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseLU/SparseLU_column_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseLU/SparseLU_column_dfs.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseLU/SparseLU_gemm_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseLU/SparseLU_gemm_kernel.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseLU/SparseLU_kernel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseLU/SparseLU_kernel_bmod.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseLU/SparseLU_panel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseLU/SparseLU_panel_bmod.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseLU/SparseLU_panel_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseLU/SparseLU_panel_dfs.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseLU/SparseLU_pivotL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseLU/SparseLU_pivotL.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseLU/SparseLU_pruneL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseLU/SparseLU_pruneL.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseLU/SparseLU_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseLU/SparseLU_relax_snode.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SparseQR/SparseQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SparseQR/SparseQR.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/StlSupport/StdDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/StlSupport/StdDeque.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/StlSupport/StdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/StlSupport/StdList.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/StlSupport/StdVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/StlSupport/StdVector.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/StlSupport/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/StlSupport/details.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/SuperLUSupport/SuperLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/SuperLUSupport/SuperLUSupport.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/UmfPackSupport/UmfPackSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/UmfPackSupport/UmfPackSupport.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/misc/RealSvd2x2.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/misc/lapacke.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/misc/lapacke_mangling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/misc/lapacke_mangling.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/plugins/ArrayCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/plugins/ArrayCwiseBinaryOps.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/plugins/ArrayCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/plugins/ArrayCwiseUnaryOps.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/plugins/BlockMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/plugins/BlockMethods.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/plugins/CommonCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/plugins/CommonCwiseBinaryOps.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/plugins/CommonCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/plugins/CommonCwiseUnaryOps.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/plugins/MatrixCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/plugins/MatrixCwiseBinaryOps.h -------------------------------------------------------------------------------- /VC++(from scratch)/Eigen/src/plugins/MatrixCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/Eigen/src/plugins/MatrixCwiseUnaryOps.h -------------------------------------------------------------------------------- /VC++(from scratch)/demo/idxF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/demo/idxF.txt -------------------------------------------------------------------------------- /VC++(from scratch)/demo/initialTemplate.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/demo/initialTemplate.ply -------------------------------------------------------------------------------- /VC++(from scratch)/demo/output.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/demo/output.ply -------------------------------------------------------------------------------- /VC++(from scratch)/demo/target.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/demo/target.ply -------------------------------------------------------------------------------- /VC++(from scratch)/demo/target.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/demo/target.pp -------------------------------------------------------------------------------- /VC++(from scratch)/demo/template.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/demo/template.ply -------------------------------------------------------------------------------- /VC++(from scratch)/demo/weights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/demo/weights.txt -------------------------------------------------------------------------------- /VC++(from scratch)/faceDenseRegistration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/faceDenseRegistration.cpp -------------------------------------------------------------------------------- /VC++(from scratch)/meshdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/meshdata.cpp -------------------------------------------------------------------------------- /VC++(from scratch)/meshdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/meshdata.h -------------------------------------------------------------------------------- /VC++(from scratch)/mkl_solve_eq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/mkl_solve_eq.cpp -------------------------------------------------------------------------------- /VC++(from scratch)/mkl_solve_eq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(from scratch)/mkl_solve_eq.h -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/MRA_txt/M0_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/MRA_txt/M0_all.txt -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/MRA_txt/M0_edges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/MRA_txt/M0_edges.txt -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/MRA_txt/M0_fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/MRA_txt/M0_fixed.txt -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/MRA_txt/M0_free.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/MRA_txt/M0_free.txt -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/MRA_txt/M1_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/MRA_txt/M1_all.txt -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/MRA_txt/M1_edges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/MRA_txt/M1_edges.txt -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/MRA_txt/M1_fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/MRA_txt/M1_fixed.txt -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/MRA_txt/M1_free.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/MRA_txt/M1_free.txt -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/MRA_txt/M2_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/MRA_txt/M2_all.txt -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/MRA_txt/M2_edges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/MRA_txt/M2_edges.txt -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/MRA_txt/M2_fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/MRA_txt/M2_fixed.txt -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/MRA_txt/M2_free.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/MRA_txt/M2_free.txt -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/MRA_txt/M3_free.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/MRA_txt/M3_free.txt -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/MRA_txt/M_free.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/MRA_txt/M_free.txt -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/MRA_txt/idxD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/MRA_txt/idxD.txt -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/MRA_txt/idxE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/MRA_txt/idxE.txt -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/MRA_txt/idxF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/MRA_txt/idxF.txt -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/MRA_txt/idxK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/MRA_txt/idxK.txt -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/MRA_txt/weight_v.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/MRA_txt/weight_v.txt -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/command.txt -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/faceDenseRegistration.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/faceDenseRegistration.exe -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/plyInput/target1.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/plyInput/target1.ply -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/plyInput/target2.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/plyInput/target2.ply -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/plyOutput/target1.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/plyOutput/target1.ply -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/plyOutput/target2.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/plyOutput/target2.ply -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/demo/template.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/demo/template.ply -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/faceDenseRegistration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/faceDenseRegistration.cpp -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/meshdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/meshdata.cpp -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/meshdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/meshdata.h -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/mkl_solve_eq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/mkl_solve_eq.cpp -------------------------------------------------------------------------------- /VC++(with initializations by NICP)/mkl_solve_eq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/VC++(with initializations by NICP)/mkl_solve_eq.h -------------------------------------------------------------------------------- /figures/Registration_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/figures/Registration_example.png -------------------------------------------------------------------------------- /figures/hand_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/figures/hand_example.png -------------------------------------------------------------------------------- /figures/mesh_detailed_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/figures/mesh_detailed_structure.png -------------------------------------------------------------------------------- /figures/step_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/figures/step_example.png -------------------------------------------------------------------------------- /matlab/Dfield.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/Dfield.mat -------------------------------------------------------------------------------- /matlab/computeVertexRing_k.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/computeVertexRing_k.m -------------------------------------------------------------------------------- /matlab/compute_geo_dis/computeGeodesicTemplate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/compute_geo_dis/computeGeodesicTemplate.m -------------------------------------------------------------------------------- /matlab/compute_geo_dis/geo_map.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/compute_geo_dis/geo_map.ply -------------------------------------------------------------------------------- /matlab/compute_geo_dis/heat_geodesic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/compute_geo_dis/heat_geodesic.m -------------------------------------------------------------------------------- /matlab/compute_geo_dis/jetmap.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/compute_geo_dis/jetmap.mat -------------------------------------------------------------------------------- /matlab/compute_geo_dis/showGeodiscHeat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/compute_geo_dis/showGeodiscHeat.m -------------------------------------------------------------------------------- /matlab/demo_dense_registration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/demo_dense_registration.m -------------------------------------------------------------------------------- /matlab/output_step/0.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/0.ply -------------------------------------------------------------------------------- /matlab/output_step/1.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/1.ply -------------------------------------------------------------------------------- /matlab/output_step/10.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/10.ply -------------------------------------------------------------------------------- /matlab/output_step/11.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/11.ply -------------------------------------------------------------------------------- /matlab/output_step/12.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/12.ply -------------------------------------------------------------------------------- /matlab/output_step/13.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/13.ply -------------------------------------------------------------------------------- /matlab/output_step/14.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/14.ply -------------------------------------------------------------------------------- /matlab/output_step/15.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/15.ply -------------------------------------------------------------------------------- /matlab/output_step/16.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/16.ply -------------------------------------------------------------------------------- /matlab/output_step/17.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/17.ply -------------------------------------------------------------------------------- /matlab/output_step/18.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/18.ply -------------------------------------------------------------------------------- /matlab/output_step/19.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/19.ply -------------------------------------------------------------------------------- /matlab/output_step/2.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/2.ply -------------------------------------------------------------------------------- /matlab/output_step/20.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/20.ply -------------------------------------------------------------------------------- /matlab/output_step/21.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/21.ply -------------------------------------------------------------------------------- /matlab/output_step/22.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/22.ply -------------------------------------------------------------------------------- /matlab/output_step/23.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/23.ply -------------------------------------------------------------------------------- /matlab/output_step/24.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/24.ply -------------------------------------------------------------------------------- /matlab/output_step/25.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/25.ply -------------------------------------------------------------------------------- /matlab/output_step/26.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/26.ply -------------------------------------------------------------------------------- /matlab/output_step/27.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/27.ply -------------------------------------------------------------------------------- /matlab/output_step/28.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/28.ply -------------------------------------------------------------------------------- /matlab/output_step/29.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/29.ply -------------------------------------------------------------------------------- /matlab/output_step/3.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/3.ply -------------------------------------------------------------------------------- /matlab/output_step/30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/30.ply -------------------------------------------------------------------------------- /matlab/output_step/4.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/4.ply -------------------------------------------------------------------------------- /matlab/output_step/5.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/5.ply -------------------------------------------------------------------------------- /matlab/output_step/6.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/6.ply -------------------------------------------------------------------------------- /matlab/output_step/7.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/7.ply -------------------------------------------------------------------------------- /matlab/output_step/8.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/8.ply -------------------------------------------------------------------------------- /matlab/output_step/9.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/output_step/9.ply -------------------------------------------------------------------------------- /matlab/plyRead.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/plyRead.m -------------------------------------------------------------------------------- /matlab/point2trimesh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/point2trimesh.m -------------------------------------------------------------------------------- /matlab/pp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/pp1.png -------------------------------------------------------------------------------- /matlab/rigidTransform3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/rigidTransform3D.m -------------------------------------------------------------------------------- /matlab/rigidTransform3DW.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/rigidTransform3DW.m -------------------------------------------------------------------------------- /matlab/target.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/target.ply -------------------------------------------------------------------------------- /matlab/target.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/target.pp -------------------------------------------------------------------------------- /matlab/template.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/template.ply -------------------------------------------------------------------------------- /matlab/template.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/template.pp -------------------------------------------------------------------------------- /matlab/writePlyFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaughtyZZ/3D_face_dense_registration/HEAD/matlab/writePlyFile.m --------------------------------------------------------------------------------