├── .gitignore ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── data ├── Andalusian │ └── input_lines_from_residuals.json ├── Barn │ └── input_lines_from_residuals.json ├── Bridge │ └── input_lines_from_residuals.json ├── HouseInterior │ └── input_lines_from_residuals.json ├── TimberFrame │ └── input_lines_from_residuals.json └── images │ ├── Residuals_all.png │ ├── Visibility_no_residuals.png │ └── Visibility_residuals.png ├── demo.sh ├── external ├── CMakeLists.txt ├── 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 │ │ │ │ └── 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 ├── OptionParser │ └── option_parser.h ├── PolyhedralComplex │ ├── LICENSE.txt │ ├── PlaneArrangementInterface.h │ └── libPlaneArr.a ├── gtest_recons │ ├── gtest-all.cc │ └── gtest.h ├── json │ └── json.hpp ├── nanoflann │ └── nanoflann.hpp └── tinyply │ ├── tinyply.cpp │ └── tinyply.h ├── full_examples ├── NvmRansacOutToResidualReconsInput.py ├── NvmToRansacInput.py ├── colmapRansacOutToResidualReconsInput.py ├── colmapToRANSACInput.py ├── from_nvm │ └── README.md ├── from_raw_images │ └── README.md └── generic_functions │ ├── TestRunner.py │ ├── __init__.py │ └── parse_files.py ├── lib ├── WeightComputation │ ├── CMakeLists.txt │ ├── WeightComputation.cpp │ └── WeightComputation.h ├── geometricTypes │ ├── CMakeLists.txt │ ├── Line.cpp │ ├── Line.h │ ├── LineSet.cpp │ ├── LineSet.h │ ├── ObjectSet.h │ ├── Primitive.cpp │ ├── Primitive.h │ ├── PrimitiveSet.cpp │ ├── PrimitiveSet.h │ ├── cgalTypes.h │ ├── jsonInput.h │ ├── jsonTools.cpp │ └── jsonTools.h ├── meshMetrics │ ├── CMakeLists.txt │ ├── Triangle.cpp │ └── Triangle.h ├── planeArrangement │ ├── ArrangementToMosek.cpp │ ├── ArrangementToMosek.h │ ├── CMakeLists.txt │ ├── PlaneArrangement.cpp │ ├── PlaneArrangement.h │ └── PolyhedronBuilder.h └── ransacOnLines │ ├── CMakeLists.txt │ ├── Line.cpp │ ├── Line.h │ ├── Plane.cpp │ ├── Plane.h │ ├── RANSAC.cpp │ ├── RANSAC.h │ ├── eigenTypedefs.h │ ├── geometric_functions.cpp │ ├── geometric_functions.h │ ├── ioRansac.cpp │ └── ioRansac.h ├── main.cpp ├── main_eval.cpp ├── main_param.cpp ├── main_ransac.cpp └── test ├── mainTest.cpp ├── plane_arrangement_fixture.h ├── plane_arrangement_weight_fixture.h ├── test_geometric_types.cpp ├── test_plane_arrangement.cpp ├── test_ransac.cpp └── test_weight_computation.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/README.md -------------------------------------------------------------------------------- /data/Andalusian/input_lines_from_residuals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/data/Andalusian/input_lines_from_residuals.json -------------------------------------------------------------------------------- /data/Barn/input_lines_from_residuals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/data/Barn/input_lines_from_residuals.json -------------------------------------------------------------------------------- /data/Bridge/input_lines_from_residuals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/data/Bridge/input_lines_from_residuals.json -------------------------------------------------------------------------------- /data/HouseInterior/input_lines_from_residuals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/data/HouseInterior/input_lines_from_residuals.json -------------------------------------------------------------------------------- /data/TimberFrame/input_lines_from_residuals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/data/TimberFrame/input_lines_from_residuals.json -------------------------------------------------------------------------------- /data/images/Residuals_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/data/images/Residuals_all.png -------------------------------------------------------------------------------- /data/images/Visibility_no_residuals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/data/images/Visibility_no_residuals.png -------------------------------------------------------------------------------- /data/images/Visibility_residuals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/data/images/Visibility_residuals.png -------------------------------------------------------------------------------- /demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/demo.sh -------------------------------------------------------------------------------- /external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/CMakeLists.txt -------------------------------------------------------------------------------- /external/Eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/CMakeLists.txt -------------------------------------------------------------------------------- /external/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/Cholesky -------------------------------------------------------------------------------- /external/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/CholmodSupport -------------------------------------------------------------------------------- /external/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/Core -------------------------------------------------------------------------------- /external/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/Dense -------------------------------------------------------------------------------- /external/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/Eigen -------------------------------------------------------------------------------- /external/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/Eigenvalues -------------------------------------------------------------------------------- /external/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/Geometry -------------------------------------------------------------------------------- /external/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/Householder -------------------------------------------------------------------------------- /external/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /external/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/Jacobi -------------------------------------------------------------------------------- /external/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/LU -------------------------------------------------------------------------------- /external/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/MetisSupport -------------------------------------------------------------------------------- /external/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/OrderingMethods -------------------------------------------------------------------------------- /external/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /external/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/PardisoSupport -------------------------------------------------------------------------------- /external/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/QR -------------------------------------------------------------------------------- /external/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /external/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/SPQRSupport -------------------------------------------------------------------------------- /external/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/SVD -------------------------------------------------------------------------------- /external/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/Sparse -------------------------------------------------------------------------------- /external/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/SparseCholesky -------------------------------------------------------------------------------- /external/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/SparseCore -------------------------------------------------------------------------------- /external/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/SparseLU -------------------------------------------------------------------------------- /external/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/SparseQR -------------------------------------------------------------------------------- /external/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/StdDeque -------------------------------------------------------------------------------- /external/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/StdList -------------------------------------------------------------------------------- /external/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/StdVector -------------------------------------------------------------------------------- /external/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /external/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /external/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /external/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /external/Eigen/src/Cholesky/LLT_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Cholesky/LLT_LAPACKE.h -------------------------------------------------------------------------------- /external/Eigen/src/CholmodSupport/CholmodSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/CholmodSupport/CholmodSupport.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/AssignEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/AssignEvaluator.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/BooleanRedux.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/CommaInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/CommaInitializer.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/ConditionEstimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/ConditionEstimator.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/CoreEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/CoreEvaluators.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/CoreIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/CoreIterators.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/CwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/CwiseBinaryOp.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/CwiseNullaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/CwiseNullaryOp.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/CwiseTernaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/CwiseTernaryOp.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/CwiseUnaryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/CwiseUnaryView.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/DenseCoeffsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/DenseCoeffsBase.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/DiagonalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/DiagonalMatrix.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/DiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/DiagonalProduct.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/ForceAlignedAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/ForceAlignedAccess.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/GeneralProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/GeneralProduct.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/GenericPacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/GenericPacketMath.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/GlobalFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/GlobalFunctions.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/MathFunctions.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/MathFunctionsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/MathFunctionsImpl.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/PermutationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/PermutationMatrix.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/PlainObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/PlainObjectBase.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/ProductEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/ProductEvaluators.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/ReturnByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/ReturnByValue.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/SelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/SelfAdjointView.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/SelfCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/SelfCwiseBinaryOp.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/SolveTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/SolveTriangular.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Transpositions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Transpositions.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/TriangularMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/TriangularMatrix.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/AVX/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/AVX/Complex.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/AVX/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/AVX/MathFunctions.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/AVX/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/AVX/PacketMath.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/AVX/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/AVX/TypeCasting.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/AVX512/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/AVX512/MathFunctions.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/AVX512/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/AVX512/PacketMath.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/AltiVec/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/AltiVec/Complex.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/AltiVec/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/AltiVec/MathFunctions.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/AltiVec/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/AltiVec/PacketMath.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/CUDA/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/CUDA/Complex.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/CUDA/Half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/CUDA/Half.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/CUDA/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/CUDA/MathFunctions.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/CUDA/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/CUDA/PacketMath.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/CUDA/PacketMathHalf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/CUDA/PacketMathHalf.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/CUDA/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/CUDA/TypeCasting.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/Default/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/Default/Settings.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/NEON/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/NEON/Complex.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/NEON/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/NEON/MathFunctions.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/NEON/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/NEON/PacketMath.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/SSE/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/SSE/Complex.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/SSE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/SSE/MathFunctions.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/SSE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/SSE/PacketMath.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/SSE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/SSE/TypeCasting.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/ZVector/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/ZVector/Complex.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/ZVector/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/ZVector/MathFunctions.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/arch/ZVector/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/arch/ZVector/PacketMath.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/functors/AssignmentFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/functors/AssignmentFunctors.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/functors/BinaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/functors/BinaryFunctors.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/functors/NullaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/functors/NullaryFunctors.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/functors/StlFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/functors/StlFunctors.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/functors/TernaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/functors/TernaryFunctors.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/functors/UnaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/functors/UnaryFunctors.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/products/GeneralBlockPanelKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/products/GeneralBlockPanelKernel.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/products/GeneralMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/products/GeneralMatrixMatrix.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/products/GeneralMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/products/GeneralMatrixVector.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/products/Parallelizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/products/Parallelizer.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/products/SelfadjointMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/products/SelfadjointMatrixMatrix.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/products/SelfadjointMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/products/SelfadjointMatrixVector.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/products/SelfadjointProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/products/SelfadjointProduct.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/products/SelfadjointRank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/products/SelfadjointRank2Update.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/products/TriangularMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/products/TriangularMatrixMatrix.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/products/TriangularMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/products/TriangularMatrixVector.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/products/TriangularSolverMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/products/TriangularSolverMatrix.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/products/TriangularSolverVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/products/TriangularSolverVector.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/util/BlasUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/util/BlasUtil.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/util/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/util/Constants.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/util/DisableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/util/DisableStupidWarnings.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/util/ForwardDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/util/ForwardDeclarations.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/util/MKL_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/util/MKL_support.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/util/NonMPL2.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/util/ReenableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/util/ReenableStupidWarnings.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/util/StaticAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/util/StaticAssert.h -------------------------------------------------------------------------------- /external/Eigen/src/Core/util/XprHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Core/util/XprHelper.h -------------------------------------------------------------------------------- /external/Eigen/src/Eigenvalues/ComplexEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Eigenvalues/ComplexEigenSolver.h -------------------------------------------------------------------------------- /external/Eigen/src/Eigenvalues/ComplexSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Eigenvalues/ComplexSchur.h -------------------------------------------------------------------------------- /external/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h -------------------------------------------------------------------------------- /external/Eigen/src/Eigenvalues/EigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Eigenvalues/EigenSolver.h -------------------------------------------------------------------------------- /external/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h -------------------------------------------------------------------------------- /external/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /external/Eigen/src/Eigenvalues/HessenbergDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Eigenvalues/HessenbergDecomposition.h -------------------------------------------------------------------------------- /external/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h -------------------------------------------------------------------------------- /external/Eigen/src/Eigenvalues/RealQZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Eigenvalues/RealQZ.h -------------------------------------------------------------------------------- /external/Eigen/src/Eigenvalues/RealSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Eigenvalues/RealSchur.h -------------------------------------------------------------------------------- /external/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h -------------------------------------------------------------------------------- /external/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /external/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h -------------------------------------------------------------------------------- /external/Eigen/src/Eigenvalues/Tridiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Eigenvalues/Tridiagonalization.h -------------------------------------------------------------------------------- /external/Eigen/src/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /external/Eigen/src/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /external/Eigen/src/Geometry/EulerAngles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Geometry/EulerAngles.h -------------------------------------------------------------------------------- /external/Eigen/src/Geometry/Homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Geometry/Homogeneous.h -------------------------------------------------------------------------------- /external/Eigen/src/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /external/Eigen/src/Geometry/OrthoMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Geometry/OrthoMethods.h -------------------------------------------------------------------------------- /external/Eigen/src/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Geometry/ParametrizedLine.h -------------------------------------------------------------------------------- /external/Eigen/src/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Geometry/Quaternion.h -------------------------------------------------------------------------------- /external/Eigen/src/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /external/Eigen/src/Geometry/RotationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Geometry/RotationBase.h -------------------------------------------------------------------------------- /external/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /external/Eigen/src/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Geometry/Transform.h -------------------------------------------------------------------------------- /external/Eigen/src/Geometry/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Geometry/Translation.h -------------------------------------------------------------------------------- /external/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /external/Eigen/src/Geometry/arch/Geometry_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Geometry/arch/Geometry_SSE.h -------------------------------------------------------------------------------- /external/Eigen/src/Householder/BlockHouseholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Householder/BlockHouseholder.h -------------------------------------------------------------------------------- /external/Eigen/src/Householder/Householder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Householder/Householder.h -------------------------------------------------------------------------------- /external/Eigen/src/Householder/HouseholderSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Householder/HouseholderSequence.h -------------------------------------------------------------------------------- /external/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h -------------------------------------------------------------------------------- /external/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h -------------------------------------------------------------------------------- /external/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h -------------------------------------------------------------------------------- /external/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h -------------------------------------------------------------------------------- /external/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h -------------------------------------------------------------------------------- /external/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h -------------------------------------------------------------------------------- /external/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h -------------------------------------------------------------------------------- /external/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h -------------------------------------------------------------------------------- /external/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /external/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /external/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /external/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /external/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /external/Eigen/src/LU/PartialPivLU_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/LU/PartialPivLU_LAPACKE.h -------------------------------------------------------------------------------- /external/Eigen/src/LU/arch/Inverse_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/LU/arch/Inverse_SSE.h -------------------------------------------------------------------------------- /external/Eigen/src/MetisSupport/MetisSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/MetisSupport/MetisSupport.h -------------------------------------------------------------------------------- /external/Eigen/src/OrderingMethods/Amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/OrderingMethods/Amd.h -------------------------------------------------------------------------------- /external/Eigen/src/OrderingMethods/Eigen_Colamd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/OrderingMethods/Eigen_Colamd.h -------------------------------------------------------------------------------- /external/Eigen/src/OrderingMethods/Ordering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/OrderingMethods/Ordering.h -------------------------------------------------------------------------------- /external/Eigen/src/PaStiXSupport/PaStiXSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/PaStiXSupport/PaStiXSupport.h -------------------------------------------------------------------------------- /external/Eigen/src/PardisoSupport/PardisoSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/PardisoSupport/PardisoSupport.h -------------------------------------------------------------------------------- /external/Eigen/src/QR/ColPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/QR/ColPivHouseholderQR.h -------------------------------------------------------------------------------- /external/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /external/Eigen/src/QR/CompleteOrthogonalDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/QR/CompleteOrthogonalDecomposition.h -------------------------------------------------------------------------------- /external/Eigen/src/QR/FullPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/QR/FullPivHouseholderQR.h -------------------------------------------------------------------------------- /external/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /external/Eigen/src/QR/HouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/QR/HouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /external/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h -------------------------------------------------------------------------------- /external/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /external/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /external/Eigen/src/SVD/JacobiSVD_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SVD/JacobiSVD_LAPACKE.h -------------------------------------------------------------------------------- /external/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /external/Eigen/src/SVD/UpperBidiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SVD/UpperBidiagonalization.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCholesky/SimplicialCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCholesky/SimplicialCholesky.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/AmbiVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/AmbiVector.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/CompressedStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/CompressedStorage.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/MappedSparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/MappedSparseMatrix.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseAssign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseAssign.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseBlock.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseColEtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseColEtree.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseCompressedBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseCompressedBase.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseCwiseBinaryOp.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseCwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseCwiseUnaryOp.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseDenseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseDenseProduct.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseDiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseDiagonalProduct.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseDot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseDot.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseFuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseFuzzy.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseMap.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseMatrix.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseMatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseMatrixBase.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparsePermutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparsePermutation.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseProduct.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseRedux.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseRef.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseSelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseSelfAdjointView.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseSolverBase.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseSparseProductWithPruning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseSparseProductWithPruning.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseTranspose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseTranspose.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseTriangularView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseTriangularView.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseUtil.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseVector.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/SparseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/SparseView.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseCore/TriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseCore/TriangularSolver.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseLU/SparseLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseLU/SparseLU.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseLU/SparseLUImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseLU/SparseLUImpl.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseLU/SparseLU_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseLU/SparseLU_Memory.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseLU/SparseLU_Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseLU/SparseLU_Structs.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseLU/SparseLU_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseLU/SparseLU_Utils.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseLU/SparseLU_column_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseLU/SparseLU_column_bmod.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseLU/SparseLU_column_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseLU/SparseLU_column_dfs.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseLU/SparseLU_gemm_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseLU/SparseLU_gemm_kernel.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseLU/SparseLU_kernel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseLU/SparseLU_kernel_bmod.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseLU/SparseLU_panel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseLU/SparseLU_panel_bmod.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseLU/SparseLU_panel_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseLU/SparseLU_panel_dfs.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseLU/SparseLU_pivotL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseLU/SparseLU_pivotL.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseLU/SparseLU_pruneL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseLU/SparseLU_pruneL.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseLU/SparseLU_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseLU/SparseLU_relax_snode.h -------------------------------------------------------------------------------- /external/Eigen/src/SparseQR/SparseQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SparseQR/SparseQR.h -------------------------------------------------------------------------------- /external/Eigen/src/StlSupport/StdDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/StlSupport/StdDeque.h -------------------------------------------------------------------------------- /external/Eigen/src/StlSupport/StdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/StlSupport/StdList.h -------------------------------------------------------------------------------- /external/Eigen/src/StlSupport/StdVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/StlSupport/StdVector.h -------------------------------------------------------------------------------- /external/Eigen/src/StlSupport/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/StlSupport/details.h -------------------------------------------------------------------------------- /external/Eigen/src/SuperLUSupport/SuperLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/SuperLUSupport/SuperLUSupport.h -------------------------------------------------------------------------------- /external/Eigen/src/UmfPackSupport/UmfPackSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/UmfPackSupport/UmfPackSupport.h -------------------------------------------------------------------------------- /external/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /external/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /external/Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/misc/RealSvd2x2.h -------------------------------------------------------------------------------- /external/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /external/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /external/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/misc/lapacke.h -------------------------------------------------------------------------------- /external/Eigen/src/misc/lapacke_mangling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/misc/lapacke_mangling.h -------------------------------------------------------------------------------- /external/Eigen/src/plugins/ArrayCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/plugins/ArrayCwiseBinaryOps.h -------------------------------------------------------------------------------- /external/Eigen/src/plugins/ArrayCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/plugins/ArrayCwiseUnaryOps.h -------------------------------------------------------------------------------- /external/Eigen/src/plugins/BlockMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/plugins/BlockMethods.h -------------------------------------------------------------------------------- /external/Eigen/src/plugins/CommonCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/plugins/CommonCwiseBinaryOps.h -------------------------------------------------------------------------------- /external/Eigen/src/plugins/CommonCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/plugins/CommonCwiseUnaryOps.h -------------------------------------------------------------------------------- /external/Eigen/src/plugins/MatrixCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/plugins/MatrixCwiseBinaryOps.h -------------------------------------------------------------------------------- /external/Eigen/src/plugins/MatrixCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/Eigen/src/plugins/MatrixCwiseUnaryOps.h -------------------------------------------------------------------------------- /external/OptionParser/option_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/OptionParser/option_parser.h -------------------------------------------------------------------------------- /external/PolyhedralComplex/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/PolyhedralComplex/LICENSE.txt -------------------------------------------------------------------------------- /external/PolyhedralComplex/PlaneArrangementInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/PolyhedralComplex/PlaneArrangementInterface.h -------------------------------------------------------------------------------- /external/PolyhedralComplex/libPlaneArr.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/PolyhedralComplex/libPlaneArr.a -------------------------------------------------------------------------------- /external/gtest_recons/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/gtest_recons/gtest-all.cc -------------------------------------------------------------------------------- /external/gtest_recons/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/gtest_recons/gtest.h -------------------------------------------------------------------------------- /external/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/json/json.hpp -------------------------------------------------------------------------------- /external/nanoflann/nanoflann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/nanoflann/nanoflann.hpp -------------------------------------------------------------------------------- /external/tinyply/tinyply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/tinyply/tinyply.cpp -------------------------------------------------------------------------------- /external/tinyply/tinyply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/external/tinyply/tinyply.h -------------------------------------------------------------------------------- /full_examples/NvmRansacOutToResidualReconsInput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/full_examples/NvmRansacOutToResidualReconsInput.py -------------------------------------------------------------------------------- /full_examples/NvmToRansacInput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/full_examples/NvmToRansacInput.py -------------------------------------------------------------------------------- /full_examples/colmapRansacOutToResidualReconsInput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/full_examples/colmapRansacOutToResidualReconsInput.py -------------------------------------------------------------------------------- /full_examples/colmapToRANSACInput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/full_examples/colmapToRANSACInput.py -------------------------------------------------------------------------------- /full_examples/from_nvm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/full_examples/from_nvm/README.md -------------------------------------------------------------------------------- /full_examples/from_raw_images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/full_examples/from_raw_images/README.md -------------------------------------------------------------------------------- /full_examples/generic_functions/TestRunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/full_examples/generic_functions/TestRunner.py -------------------------------------------------------------------------------- /full_examples/generic_functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /full_examples/generic_functions/parse_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/full_examples/generic_functions/parse_files.py -------------------------------------------------------------------------------- /lib/WeightComputation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/WeightComputation/CMakeLists.txt -------------------------------------------------------------------------------- /lib/WeightComputation/WeightComputation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/WeightComputation/WeightComputation.cpp -------------------------------------------------------------------------------- /lib/WeightComputation/WeightComputation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/WeightComputation/WeightComputation.h -------------------------------------------------------------------------------- /lib/geometricTypes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/geometricTypes/CMakeLists.txt -------------------------------------------------------------------------------- /lib/geometricTypes/Line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/geometricTypes/Line.cpp -------------------------------------------------------------------------------- /lib/geometricTypes/Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/geometricTypes/Line.h -------------------------------------------------------------------------------- /lib/geometricTypes/LineSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/geometricTypes/LineSet.cpp -------------------------------------------------------------------------------- /lib/geometricTypes/LineSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/geometricTypes/LineSet.h -------------------------------------------------------------------------------- /lib/geometricTypes/ObjectSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/geometricTypes/ObjectSet.h -------------------------------------------------------------------------------- /lib/geometricTypes/Primitive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/geometricTypes/Primitive.cpp -------------------------------------------------------------------------------- /lib/geometricTypes/Primitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/geometricTypes/Primitive.h -------------------------------------------------------------------------------- /lib/geometricTypes/PrimitiveSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/geometricTypes/PrimitiveSet.cpp -------------------------------------------------------------------------------- /lib/geometricTypes/PrimitiveSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/geometricTypes/PrimitiveSet.h -------------------------------------------------------------------------------- /lib/geometricTypes/cgalTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/geometricTypes/cgalTypes.h -------------------------------------------------------------------------------- /lib/geometricTypes/jsonInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/geometricTypes/jsonInput.h -------------------------------------------------------------------------------- /lib/geometricTypes/jsonTools.cpp: -------------------------------------------------------------------------------- 1 | #include "jsonTools.h" 2 | -------------------------------------------------------------------------------- /lib/geometricTypes/jsonTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/geometricTypes/jsonTools.h -------------------------------------------------------------------------------- /lib/meshMetrics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/meshMetrics/CMakeLists.txt -------------------------------------------------------------------------------- /lib/meshMetrics/Triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/meshMetrics/Triangle.cpp -------------------------------------------------------------------------------- /lib/meshMetrics/Triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/meshMetrics/Triangle.h -------------------------------------------------------------------------------- /lib/planeArrangement/ArrangementToMosek.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/planeArrangement/ArrangementToMosek.cpp -------------------------------------------------------------------------------- /lib/planeArrangement/ArrangementToMosek.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/planeArrangement/ArrangementToMosek.h -------------------------------------------------------------------------------- /lib/planeArrangement/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/planeArrangement/CMakeLists.txt -------------------------------------------------------------------------------- /lib/planeArrangement/PlaneArrangement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/planeArrangement/PlaneArrangement.cpp -------------------------------------------------------------------------------- /lib/planeArrangement/PlaneArrangement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/planeArrangement/PlaneArrangement.h -------------------------------------------------------------------------------- /lib/planeArrangement/PolyhedronBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/planeArrangement/PolyhedronBuilder.h -------------------------------------------------------------------------------- /lib/ransacOnLines/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/ransacOnLines/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ransacOnLines/Line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/ransacOnLines/Line.cpp -------------------------------------------------------------------------------- /lib/ransacOnLines/Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/ransacOnLines/Line.h -------------------------------------------------------------------------------- /lib/ransacOnLines/Plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/ransacOnLines/Plane.cpp -------------------------------------------------------------------------------- /lib/ransacOnLines/Plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/ransacOnLines/Plane.h -------------------------------------------------------------------------------- /lib/ransacOnLines/RANSAC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/ransacOnLines/RANSAC.cpp -------------------------------------------------------------------------------- /lib/ransacOnLines/RANSAC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/ransacOnLines/RANSAC.h -------------------------------------------------------------------------------- /lib/ransacOnLines/eigenTypedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/ransacOnLines/eigenTypedefs.h -------------------------------------------------------------------------------- /lib/ransacOnLines/geometric_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/ransacOnLines/geometric_functions.cpp -------------------------------------------------------------------------------- /lib/ransacOnLines/geometric_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/ransacOnLines/geometric_functions.h -------------------------------------------------------------------------------- /lib/ransacOnLines/ioRansac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/ransacOnLines/ioRansac.cpp -------------------------------------------------------------------------------- /lib/ransacOnLines/ioRansac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/lib/ransacOnLines/ioRansac.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/main.cpp -------------------------------------------------------------------------------- /main_eval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/main_eval.cpp -------------------------------------------------------------------------------- /main_param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/main_param.cpp -------------------------------------------------------------------------------- /main_ransac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/main_ransac.cpp -------------------------------------------------------------------------------- /test/mainTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/test/mainTest.cpp -------------------------------------------------------------------------------- /test/plane_arrangement_fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/test/plane_arrangement_fixture.h -------------------------------------------------------------------------------- /test/plane_arrangement_weight_fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/test/plane_arrangement_weight_fixture.h -------------------------------------------------------------------------------- /test/test_geometric_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/test/test_geometric_types.cpp -------------------------------------------------------------------------------- /test/test_plane_arrangement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/test/test_plane_arrangement.cpp -------------------------------------------------------------------------------- /test/test_ransac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/test/test_ransac.cpp -------------------------------------------------------------------------------- /test/test_weight_computation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palanglois/line-surface-reconstruction/HEAD/test/test_weight_computation.cpp --------------------------------------------------------------------------------