├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── Makefile ├── README.txt ├── __init__.py ├── examples ├── CMakeLists.txt ├── anno1.ppm ├── anno2.ppm ├── anno3.ppm ├── common.cpp ├── common.h ├── dense_inference.cpp ├── dense_learning.cpp ├── im1.ppm ├── im2.ppm ├── im3.ppm ├── ppm.cpp ├── ppm.h ├── test_optimization.cpp ├── test_pairwise.cpp └── test_permutohedral.cpp ├── external ├── CMakeLists.txt └── liblbfgs │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── aclocal.m4 │ ├── autogen.sh │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.in │ ├── depcomp │ ├── include │ └── lbfgs.h │ ├── install-sh │ ├── lbfgs.sln │ ├── lib │ ├── Makefile.am │ ├── Makefile.in │ ├── arithmetic_ansi.h │ ├── arithmetic_sse_double.h │ ├── arithmetic_sse_float.h │ ├── lbfgs.c │ └── lib.vcxproj │ ├── ltmain.sh │ ├── missing │ └── sample │ ├── Makefile.am │ ├── Makefile.in │ ├── sample.c │ ├── sample.cpp │ └── sample.vcxproj ├── include ├── Eigen │ ├── Array │ ├── CMakeLists.txt │ ├── Cholesky │ ├── CholmodSupport │ ├── Core │ ├── Dense │ ├── Eigen │ ├── Eigen2Support │ ├── Eigenvalues │ ├── Geometry │ ├── Householder │ ├── IterativeLinearSolvers │ ├── Jacobi │ ├── LU │ ├── LeastSquares │ ├── OrderingMethods │ ├── PaStiXSupport │ ├── PardisoSupport │ ├── QR │ ├── QtAlignedMalloc │ ├── SVD │ ├── Sparse │ ├── SparseCholesky │ ├── SparseCore │ ├── StdDeque │ ├── StdList │ ├── StdVector │ ├── SuperLUSupport │ ├── UmfPackSupport │ └── src │ │ ├── CMakeLists.txt │ │ ├── Cholesky │ │ ├── CMakeLists.txt │ │ ├── LDLT.h │ │ ├── LLT.h │ │ └── LLT_MKL.h │ │ ├── CholmodSupport │ │ ├── CMakeLists.txt │ │ └── CholmodSupport.h │ │ ├── Core │ │ ├── Array.h │ │ ├── ArrayBase.h │ │ ├── ArrayWrapper.h │ │ ├── Assign.h │ │ ├── Assign_MKL.h │ │ ├── BandMatrix.h │ │ ├── Block.h │ │ ├── BooleanRedux.h │ │ ├── CMakeLists.txt │ │ ├── CommaInitializer.h │ │ ├── CwiseBinaryOp.h │ │ ├── CwiseNullaryOp.h │ │ ├── CwiseUnaryOp.h │ │ ├── CwiseUnaryView.h │ │ ├── DenseBase.h │ │ ├── DenseCoeffsBase.h │ │ ├── DenseStorage.h │ │ ├── Diagonal.h │ │ ├── DiagonalMatrix.h │ │ ├── DiagonalProduct.h │ │ ├── Dot.h │ │ ├── EigenBase.h │ │ ├── Flagged.h │ │ ├── ForceAlignedAccess.h │ │ ├── Functors.h │ │ ├── Fuzzy.h │ │ ├── GeneralProduct.h │ │ ├── GenericPacketMath.h │ │ ├── GlobalFunctions.h │ │ ├── IO.h │ │ ├── Map.h │ │ ├── MapBase.h │ │ ├── MathFunctions.h │ │ ├── Matrix.h │ │ ├── MatrixBase.h │ │ ├── NestByValue.h │ │ ├── NoAlias.h │ │ ├── NumTraits.h │ │ ├── PermutationMatrix.h │ │ ├── PlainObjectBase.h │ │ ├── Product.h │ │ ├── ProductBase.h │ │ ├── Random.h │ │ ├── Redux.h │ │ ├── Replicate.h │ │ ├── ReturnByValue.h │ │ ├── Reverse.h │ │ ├── Select.h │ │ ├── SelfAdjointView.h │ │ ├── SelfCwiseBinaryOp.h │ │ ├── SolveTriangular.h │ │ ├── StableNorm.h │ │ ├── Stride.h │ │ ├── Swap.h │ │ ├── Transpose.h │ │ ├── Transpositions.h │ │ ├── TriangularMatrix.h │ │ ├── VectorBlock.h │ │ ├── VectorwiseOp.h │ │ ├── Visitor.h │ │ ├── arch │ │ │ ├── AltiVec │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Complex.h │ │ │ │ └── PacketMath.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Default │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Settings.h │ │ │ ├── NEON │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Complex.h │ │ │ │ └── PacketMath.h │ │ │ └── SSE │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ └── PacketMath.h │ │ ├── products │ │ │ ├── CMakeLists.txt │ │ │ ├── CoeffBasedProduct.h │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ ├── GeneralMatrixMatrix.h │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ ├── GeneralMatrixMatrixTriangular_MKL.h │ │ │ ├── GeneralMatrixMatrix_MKL.h │ │ │ ├── GeneralMatrixVector.h │ │ │ ├── GeneralMatrixVector_MKL.h │ │ │ ├── Parallelizer.h │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ ├── SelfadjointMatrixMatrix_MKL.h │ │ │ ├── SelfadjointMatrixVector.h │ │ │ ├── SelfadjointMatrixVector_MKL.h │ │ │ ├── SelfadjointProduct.h │ │ │ ├── SelfadjointRank2Update.h │ │ │ ├── TriangularMatrixMatrix.h │ │ │ ├── TriangularMatrixMatrix_MKL.h │ │ │ ├── TriangularMatrixVector.h │ │ │ ├── TriangularMatrixVector_MKL.h │ │ │ ├── TriangularSolverMatrix.h │ │ │ ├── TriangularSolverMatrix_MKL.h │ │ │ └── TriangularSolverVector.h │ │ └── util │ │ │ ├── BlasUtil.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Constants.h │ │ │ ├── DisableStupidWarnings.h │ │ │ ├── ForwardDeclarations.h │ │ │ ├── MKL_support.h │ │ │ ├── Macros.h │ │ │ ├── Memory.h │ │ │ ├── Meta.h │ │ │ ├── NonMPL2.h │ │ │ ├── ReenableStupidWarnings.h │ │ │ ├── StaticAssert.h │ │ │ └── XprHelper.h │ │ ├── Eigen2Support │ │ ├── Block.h │ │ ├── CMakeLists.txt │ │ ├── Cwise.h │ │ ├── CwiseOperators.h │ │ ├── Geometry │ │ │ ├── AlignedBox.h │ │ │ ├── All.h │ │ │ ├── AngleAxis.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Hyperplane.h │ │ │ ├── ParametrizedLine.h │ │ │ ├── Quaternion.h │ │ │ ├── Rotation2D.h │ │ │ ├── RotationBase.h │ │ │ ├── Scaling.h │ │ │ ├── Transform.h │ │ │ └── Translation.h │ │ ├── LU.h │ │ ├── Lazy.h │ │ ├── LeastSquares.h │ │ ├── Macros.h │ │ ├── MathFunctions.h │ │ ├── Memory.h │ │ ├── Meta.h │ │ ├── Minor.h │ │ ├── QR.h │ │ ├── SVD.h │ │ ├── TriangularSolver.h │ │ └── VectorBlock.h │ │ ├── Eigenvalues │ │ ├── CMakeLists.txt │ │ ├── ComplexEigenSolver.h │ │ ├── ComplexSchur.h │ │ ├── ComplexSchur_MKL.h │ │ ├── EigenSolver.h │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ ├── HessenbergDecomposition.h │ │ ├── MatrixBaseEigenvalues.h │ │ ├── RealSchur.h │ │ ├── RealSchur_MKL.h │ │ ├── SelfAdjointEigenSolver.h │ │ ├── SelfAdjointEigenSolver_MKL.h │ │ └── Tridiagonalization.h │ │ ├── Geometry │ │ ├── AlignedBox.h │ │ ├── AngleAxis.h │ │ ├── CMakeLists.txt │ │ ├── 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 │ │ │ ├── CMakeLists.txt │ │ │ └── Geometry_SSE.h │ │ ├── Householder │ │ ├── BlockHouseholder.h │ │ ├── CMakeLists.txt │ │ ├── Householder.h │ │ └── HouseholderSequence.h │ │ ├── IterativeLinearSolvers │ │ ├── BasicPreconditioners.h │ │ ├── BiCGSTAB.h │ │ ├── CMakeLists.txt │ │ ├── ConjugateGradient.h │ │ ├── IncompleteLUT.h │ │ └── IterativeSolverBase.h │ │ ├── Jacobi │ │ ├── CMakeLists.txt │ │ └── Jacobi.h │ │ ├── LU │ │ ├── CMakeLists.txt │ │ ├── Determinant.h │ │ ├── FullPivLU.h │ │ ├── Inverse.h │ │ ├── PartialPivLU.h │ │ ├── PartialPivLU_MKL.h │ │ └── arch │ │ │ ├── CMakeLists.txt │ │ │ └── Inverse_SSE.h │ │ ├── OrderingMethods │ │ ├── Amd.h │ │ └── CMakeLists.txt │ │ ├── PaStiXSupport │ │ ├── CMakeLists.txt │ │ └── PaStiXSupport.h │ │ ├── PardisoSupport │ │ ├── CMakeLists.txt │ │ └── PardisoSupport.h │ │ ├── QR │ │ ├── CMakeLists.txt │ │ ├── ColPivHouseholderQR.h │ │ ├── ColPivHouseholderQR_MKL.h │ │ ├── FullPivHouseholderQR.h │ │ ├── HouseholderQR.h │ │ └── HouseholderQR_MKL.h │ │ ├── SVD │ │ ├── CMakeLists.txt │ │ ├── JacobiSVD.h │ │ ├── JacobiSVD_MKL.h │ │ └── UpperBidiagonalization.h │ │ ├── SparseCholesky │ │ ├── CMakeLists.txt │ │ └── SimplicialCholesky.h │ │ ├── SparseCore │ │ ├── AmbiVector.h │ │ ├── CMakeLists.txt │ │ ├── CompressedStorage.h │ │ ├── ConservativeSparseSparseProduct.h │ │ ├── CoreIterators.h │ │ ├── MappedSparseMatrix.h │ │ ├── SparseAssign.h │ │ ├── SparseBlock.h │ │ ├── SparseCwiseBinaryOp.h │ │ ├── SparseCwiseUnaryOp.h │ │ ├── SparseDenseProduct.h │ │ ├── SparseDiagonalProduct.h │ │ ├── SparseDot.h │ │ ├── SparseFuzzy.h │ │ ├── SparseMatrix.h │ │ ├── SparseMatrixBase.h │ │ ├── SparsePermutation.h │ │ ├── SparseProduct.h │ │ ├── SparseRedux.h │ │ ├── SparseSelfAdjointView.h │ │ ├── SparseSparseProductWithPruning.h │ │ ├── SparseTranspose.h │ │ ├── SparseTriangularView.h │ │ ├── SparseUtil.h │ │ ├── SparseVector.h │ │ ├── SparseView.h │ │ └── TriangularSolver.h │ │ ├── StlSupport │ │ ├── CMakeLists.txt │ │ ├── StdDeque.h │ │ ├── StdList.h │ │ ├── StdVector.h │ │ └── details.h │ │ ├── SuperLUSupport │ │ ├── CMakeLists.txt │ │ └── SuperLUSupport.h │ │ ├── UmfPackSupport │ │ ├── CMakeLists.txt │ │ └── UmfPackSupport.h │ │ ├── misc │ │ ├── CMakeLists.txt │ │ ├── Image.h │ │ ├── Kernel.h │ │ ├── Solve.h │ │ ├── SparseSolve.h │ │ └── blas.h │ │ └── plugins │ │ ├── ArrayCwiseBinaryOps.h │ │ ├── ArrayCwiseUnaryOps.h │ │ ├── BlockMethods.h │ │ ├── CMakeLists.txt │ │ ├── CommonCwiseBinaryOps.h │ │ ├── CommonCwiseUnaryOps.h │ │ ├── MatrixCwiseBinaryOps.h │ │ └── MatrixCwiseUnaryOps.h ├── crfenergy.h ├── densecrf.h ├── labelcompatibility.h ├── objective.h ├── optimization.h ├── pairwise.h ├── permutohedral.h └── unary.h ├── src ├── CMakeLists.txt ├── densecrf.cpp ├── labelcompatibility.cpp ├── objective.cpp ├── optimization.cpp ├── pairwise.cpp ├── permutohedral.cpp ├── unary.cpp ├── util.cpp └── util.h ├── test_densecrf.py ├── utils.py └── wrapper └── Pydensecrf.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/Makefile -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/README.txt -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/anno1.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/examples/anno1.ppm -------------------------------------------------------------------------------- /examples/anno2.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/examples/anno2.ppm -------------------------------------------------------------------------------- /examples/anno3.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/examples/anno3.ppm -------------------------------------------------------------------------------- /examples/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/examples/common.cpp -------------------------------------------------------------------------------- /examples/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/examples/common.h -------------------------------------------------------------------------------- /examples/dense_inference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/examples/dense_inference.cpp -------------------------------------------------------------------------------- /examples/dense_learning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/examples/dense_learning.cpp -------------------------------------------------------------------------------- /examples/im1.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/examples/im1.ppm -------------------------------------------------------------------------------- /examples/im2.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/examples/im2.ppm -------------------------------------------------------------------------------- /examples/im3.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/examples/im3.ppm -------------------------------------------------------------------------------- /examples/ppm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/examples/ppm.cpp -------------------------------------------------------------------------------- /examples/ppm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/examples/ppm.h -------------------------------------------------------------------------------- /examples/test_optimization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/examples/test_optimization.cpp -------------------------------------------------------------------------------- /examples/test_pairwise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/examples/test_pairwise.cpp -------------------------------------------------------------------------------- /examples/test_permutohedral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/examples/test_permutohedral.cpp -------------------------------------------------------------------------------- /external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/CMakeLists.txt -------------------------------------------------------------------------------- /external/liblbfgs/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/AUTHORS -------------------------------------------------------------------------------- /external/liblbfgs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/COPYING -------------------------------------------------------------------------------- /external/liblbfgs/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/ChangeLog -------------------------------------------------------------------------------- /external/liblbfgs/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/INSTALL -------------------------------------------------------------------------------- /external/liblbfgs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/Makefile.am -------------------------------------------------------------------------------- /external/liblbfgs/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/Makefile.in -------------------------------------------------------------------------------- /external/liblbfgs/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/liblbfgs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/README -------------------------------------------------------------------------------- /external/liblbfgs/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/aclocal.m4 -------------------------------------------------------------------------------- /external/liblbfgs/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/autogen.sh -------------------------------------------------------------------------------- /external/liblbfgs/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/config.guess -------------------------------------------------------------------------------- /external/liblbfgs/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/config.h.in -------------------------------------------------------------------------------- /external/liblbfgs/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/config.sub -------------------------------------------------------------------------------- /external/liblbfgs/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/configure -------------------------------------------------------------------------------- /external/liblbfgs/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/configure.in -------------------------------------------------------------------------------- /external/liblbfgs/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/depcomp -------------------------------------------------------------------------------- /external/liblbfgs/include/lbfgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/include/lbfgs.h -------------------------------------------------------------------------------- /external/liblbfgs/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/install-sh -------------------------------------------------------------------------------- /external/liblbfgs/lbfgs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/lbfgs.sln -------------------------------------------------------------------------------- /external/liblbfgs/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/lib/Makefile.am -------------------------------------------------------------------------------- /external/liblbfgs/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/lib/Makefile.in -------------------------------------------------------------------------------- /external/liblbfgs/lib/arithmetic_ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/lib/arithmetic_ansi.h -------------------------------------------------------------------------------- /external/liblbfgs/lib/arithmetic_sse_double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/lib/arithmetic_sse_double.h -------------------------------------------------------------------------------- /external/liblbfgs/lib/arithmetic_sse_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/lib/arithmetic_sse_float.h -------------------------------------------------------------------------------- /external/liblbfgs/lib/lbfgs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/lib/lbfgs.c -------------------------------------------------------------------------------- /external/liblbfgs/lib/lib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/lib/lib.vcxproj -------------------------------------------------------------------------------- /external/liblbfgs/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/ltmain.sh -------------------------------------------------------------------------------- /external/liblbfgs/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/missing -------------------------------------------------------------------------------- /external/liblbfgs/sample/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/sample/Makefile.am -------------------------------------------------------------------------------- /external/liblbfgs/sample/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/sample/Makefile.in -------------------------------------------------------------------------------- /external/liblbfgs/sample/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/sample/sample.c -------------------------------------------------------------------------------- /external/liblbfgs/sample/sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/sample/sample.cpp -------------------------------------------------------------------------------- /external/liblbfgs/sample/sample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/external/liblbfgs/sample/sample.vcxproj -------------------------------------------------------------------------------- /include/Eigen/Array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/Array -------------------------------------------------------------------------------- /include/Eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/Cholesky -------------------------------------------------------------------------------- /include/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/CholmodSupport -------------------------------------------------------------------------------- /include/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/Core -------------------------------------------------------------------------------- /include/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/Dense -------------------------------------------------------------------------------- /include/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/Eigen -------------------------------------------------------------------------------- /include/Eigen/Eigen2Support: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/Eigen2Support -------------------------------------------------------------------------------- /include/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/Eigenvalues -------------------------------------------------------------------------------- /include/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/Geometry -------------------------------------------------------------------------------- /include/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/Householder -------------------------------------------------------------------------------- /include/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /include/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/Jacobi -------------------------------------------------------------------------------- /include/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/LU -------------------------------------------------------------------------------- /include/Eigen/LeastSquares: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/LeastSquares -------------------------------------------------------------------------------- /include/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/OrderingMethods -------------------------------------------------------------------------------- /include/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /include/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/PardisoSupport -------------------------------------------------------------------------------- /include/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/QR -------------------------------------------------------------------------------- /include/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /include/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/SVD -------------------------------------------------------------------------------- /include/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/Sparse -------------------------------------------------------------------------------- /include/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/SparseCholesky -------------------------------------------------------------------------------- /include/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/SparseCore -------------------------------------------------------------------------------- /include/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/StdDeque -------------------------------------------------------------------------------- /include/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/StdList -------------------------------------------------------------------------------- /include/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/StdVector -------------------------------------------------------------------------------- /include/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /include/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /include/Eigen/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/Cholesky/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Cholesky/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /include/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /include/Eigen/src/Cholesky/LLT_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Cholesky/LLT_MKL.h -------------------------------------------------------------------------------- /include/Eigen/src/CholmodSupport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/CholmodSupport/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/CholmodSupport/CholmodSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/CholmodSupport/CholmodSupport.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/BooleanRedux.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/Core/CommaInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/CommaInitializer.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/CwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/CwiseBinaryOp.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/CwiseNullaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/CwiseNullaryOp.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/CwiseUnaryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/CwiseUnaryView.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/DenseCoeffsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/DenseCoeffsBase.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/DiagonalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/DiagonalMatrix.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/DiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/DiagonalProduct.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/Flagged.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/Flagged.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/ForceAlignedAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/ForceAlignedAccess.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/Functors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/Functors.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/GeneralProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/GeneralProduct.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/GenericPacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/GenericPacketMath.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/GlobalFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/GlobalFunctions.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/MathFunctions.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/PermutationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/PermutationMatrix.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/PlainObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/PlainObjectBase.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/ProductBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/ProductBase.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/ReturnByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/ReturnByValue.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/SelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/SelfAdjointView.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/SelfCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/SelfCwiseBinaryOp.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/SolveTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/SolveTriangular.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/Transpositions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/Transpositions.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/TriangularMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/TriangularMatrix.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/AltiVec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/arch/AltiVec/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/AltiVec/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/arch/AltiVec/Complex.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/AltiVec/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/arch/AltiVec/PacketMath.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/arch/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/Default/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/arch/Default/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/Default/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/arch/Default/Settings.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/NEON/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/arch/NEON/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/NEON/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/arch/NEON/Complex.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/NEON/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/arch/NEON/PacketMath.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/SSE/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/arch/SSE/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/SSE/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/arch/SSE/Complex.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/SSE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/arch/SSE/MathFunctions.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/arch/SSE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/arch/SSE/PacketMath.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/CoeffBasedProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/CoeffBasedProduct.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/GeneralMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/GeneralMatrixMatrix.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_MKL.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/GeneralMatrixMatrix_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/GeneralMatrixMatrix_MKL.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/GeneralMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/GeneralMatrixVector.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/GeneralMatrixVector_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/GeneralMatrixVector_MKL.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/Parallelizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/Parallelizer.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/SelfadjointMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/SelfadjointMatrixMatrix.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/SelfadjointMatrixMatrix_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/SelfadjointMatrixMatrix_MKL.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/SelfadjointMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/SelfadjointMatrixVector.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/SelfadjointMatrixVector_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/SelfadjointMatrixVector_MKL.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/SelfadjointProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/SelfadjointProduct.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/SelfadjointRank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/SelfadjointRank2Update.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/TriangularMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/TriangularMatrixMatrix.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/TriangularMatrixMatrix_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/TriangularMatrixMatrix_MKL.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/TriangularMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/TriangularMatrixVector.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/TriangularMatrixVector_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/TriangularMatrixVector_MKL.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/TriangularSolverMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/TriangularSolverMatrix.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/TriangularSolverMatrix_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/TriangularSolverMatrix_MKL.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/products/TriangularSolverVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/products/TriangularSolverVector.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/BlasUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/util/BlasUtil.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/util/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/util/Constants.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/DisableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/util/DisableStupidWarnings.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/ForwardDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/util/ForwardDeclarations.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/MKL_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/util/MKL_support.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/util/NonMPL2.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/ReenableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/util/ReenableStupidWarnings.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/StaticAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/util/StaticAssert.h -------------------------------------------------------------------------------- /include/Eigen/src/Core/util/XprHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Core/util/XprHelper.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/Block.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/Cwise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/Cwise.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/CwiseOperators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/CwiseOperators.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/Geometry/All.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/Geometry/All.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/Geometry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/Geometry/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/Geometry/ParametrizedLine.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/Geometry/Quaternion.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/Geometry/RotationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/Geometry/RotationBase.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/Geometry/Scaling.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/Geometry/Transform.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/Geometry/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/Geometry/Translation.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/LU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/LU.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/Lazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/Lazy.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/LeastSquares.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/LeastSquares.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/Macros.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/MathFunctions.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/Memory.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/Meta.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/Minor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/Minor.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/QR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/QR.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/SVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/SVD.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/TriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/TriangularSolver.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigen2Support/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigen2Support/VectorBlock.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigenvalues/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigenvalues/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/Eigenvalues/ComplexEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigenvalues/ComplexEigenSolver.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigenvalues/ComplexSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigenvalues/ComplexSchur.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigenvalues/ComplexSchur_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigenvalues/ComplexSchur_MKL.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigenvalues/EigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigenvalues/EigenSolver.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigenvalues/HessenbergDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigenvalues/HessenbergDecomposition.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigenvalues/RealSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigenvalues/RealSchur.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigenvalues/RealSchur_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigenvalues/RealSchur_MKL.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_MKL.h -------------------------------------------------------------------------------- /include/Eigen/src/Eigenvalues/Tridiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Eigenvalues/Tridiagonalization.h -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Geometry/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/EulerAngles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Geometry/EulerAngles.h -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/Homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Geometry/Homogeneous.h -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/OrthoMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Geometry/OrthoMethods.h -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Geometry/ParametrizedLine.h -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Geometry/Quaternion.h -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/RotationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Geometry/RotationBase.h -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Geometry/Transform.h -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Geometry/Translation.h -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/arch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Geometry/arch/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/Geometry/arch/Geometry_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Geometry/arch/Geometry_SSE.h -------------------------------------------------------------------------------- /include/Eigen/src/Householder/BlockHouseholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Householder/BlockHouseholder.h -------------------------------------------------------------------------------- /include/Eigen/src/Householder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Householder/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/Householder/Householder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Householder/Householder.h -------------------------------------------------------------------------------- /include/Eigen/src/Householder/HouseholderSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Householder/HouseholderSequence.h -------------------------------------------------------------------------------- /include/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h -------------------------------------------------------------------------------- /include/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h -------------------------------------------------------------------------------- /include/Eigen/src/IterativeLinearSolvers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/IterativeLinearSolvers/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h -------------------------------------------------------------------------------- /include/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h -------------------------------------------------------------------------------- /include/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h -------------------------------------------------------------------------------- /include/Eigen/src/Jacobi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Jacobi/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /include/Eigen/src/LU/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/LU/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /include/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /include/Eigen/src/LU/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/LU/Inverse.h -------------------------------------------------------------------------------- /include/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /include/Eigen/src/LU/PartialPivLU_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/LU/PartialPivLU_MKL.h -------------------------------------------------------------------------------- /include/Eigen/src/LU/arch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/LU/arch/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/LU/arch/Inverse_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/LU/arch/Inverse_SSE.h -------------------------------------------------------------------------------- /include/Eigen/src/OrderingMethods/Amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/OrderingMethods/Amd.h -------------------------------------------------------------------------------- /include/Eigen/src/OrderingMethods/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/OrderingMethods/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/PaStiXSupport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/PaStiXSupport/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/PaStiXSupport/PaStiXSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/PaStiXSupport/PaStiXSupport.h -------------------------------------------------------------------------------- /include/Eigen/src/PardisoSupport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/PardisoSupport/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/PardisoSupport/PardisoSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/PardisoSupport/PardisoSupport.h -------------------------------------------------------------------------------- /include/Eigen/src/QR/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/QR/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/QR/ColPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/QR/ColPivHouseholderQR.h -------------------------------------------------------------------------------- /include/Eigen/src/QR/ColPivHouseholderQR_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/QR/ColPivHouseholderQR_MKL.h -------------------------------------------------------------------------------- /include/Eigen/src/QR/FullPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/QR/FullPivHouseholderQR.h -------------------------------------------------------------------------------- /include/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /include/Eigen/src/QR/HouseholderQR_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/QR/HouseholderQR_MKL.h -------------------------------------------------------------------------------- /include/Eigen/src/SVD/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SVD/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /include/Eigen/src/SVD/JacobiSVD_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SVD/JacobiSVD_MKL.h -------------------------------------------------------------------------------- /include/Eigen/src/SVD/UpperBidiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SVD/UpperBidiagonalization.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCholesky/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCholesky/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/SparseCholesky/SimplicialCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCholesky/SimplicialCholesky.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/AmbiVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/AmbiVector.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/CompressedStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/CompressedStorage.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/CoreIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/CoreIterators.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/MappedSparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/MappedSparseMatrix.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseAssign.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/SparseBlock.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseCwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/SparseCwiseUnaryOp.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseDenseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/SparseDenseProduct.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseDiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/SparseDiagonalProduct.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseDot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/SparseDot.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseFuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/SparseFuzzy.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/SparseMatrix.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseMatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/SparseMatrixBase.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparsePermutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/SparsePermutation.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/SparseProduct.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/SparseRedux.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseSelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/SparseSelfAdjointView.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseSparseProductWithPruning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/SparseSparseProductWithPruning.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseTranspose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/SparseTranspose.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseTriangularView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/SparseTriangularView.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/SparseUtil.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/SparseVector.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/SparseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/SparseView.h -------------------------------------------------------------------------------- /include/Eigen/src/SparseCore/TriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SparseCore/TriangularSolver.h -------------------------------------------------------------------------------- /include/Eigen/src/StlSupport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/StlSupport/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/StlSupport/StdDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/StlSupport/StdDeque.h -------------------------------------------------------------------------------- /include/Eigen/src/StlSupport/StdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/StlSupport/StdList.h -------------------------------------------------------------------------------- /include/Eigen/src/StlSupport/StdVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/StlSupport/StdVector.h -------------------------------------------------------------------------------- /include/Eigen/src/StlSupport/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/StlSupport/details.h -------------------------------------------------------------------------------- /include/Eigen/src/SuperLUSupport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SuperLUSupport/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/SuperLUSupport/SuperLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/SuperLUSupport/SuperLUSupport.h -------------------------------------------------------------------------------- /include/Eigen/src/UmfPackSupport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/UmfPackSupport/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/UmfPackSupport/UmfPackSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/UmfPackSupport/UmfPackSupport.h -------------------------------------------------------------------------------- /include/Eigen/src/misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/misc/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /include/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /include/Eigen/src/misc/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/misc/Solve.h -------------------------------------------------------------------------------- /include/Eigen/src/misc/SparseSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/misc/SparseSolve.h -------------------------------------------------------------------------------- /include/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /include/Eigen/src/plugins/ArrayCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/plugins/ArrayCwiseBinaryOps.h -------------------------------------------------------------------------------- /include/Eigen/src/plugins/ArrayCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/plugins/ArrayCwiseUnaryOps.h -------------------------------------------------------------------------------- /include/Eigen/src/plugins/BlockMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/plugins/BlockMethods.h -------------------------------------------------------------------------------- /include/Eigen/src/plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /include/Eigen/src/plugins/CommonCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/plugins/CommonCwiseBinaryOps.h -------------------------------------------------------------------------------- /include/Eigen/src/plugins/CommonCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/plugins/CommonCwiseUnaryOps.h -------------------------------------------------------------------------------- /include/Eigen/src/plugins/MatrixCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/plugins/MatrixCwiseBinaryOps.h -------------------------------------------------------------------------------- /include/Eigen/src/plugins/MatrixCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/Eigen/src/plugins/MatrixCwiseUnaryOps.h -------------------------------------------------------------------------------- /include/crfenergy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/crfenergy.h -------------------------------------------------------------------------------- /include/densecrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/densecrf.h -------------------------------------------------------------------------------- /include/labelcompatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/labelcompatibility.h -------------------------------------------------------------------------------- /include/objective.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/objective.h -------------------------------------------------------------------------------- /include/optimization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/optimization.h -------------------------------------------------------------------------------- /include/pairwise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/pairwise.h -------------------------------------------------------------------------------- /include/permutohedral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/permutohedral.h -------------------------------------------------------------------------------- /include/unary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/include/unary.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/densecrf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/src/densecrf.cpp -------------------------------------------------------------------------------- /src/labelcompatibility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/src/labelcompatibility.cpp -------------------------------------------------------------------------------- /src/objective.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/src/objective.cpp -------------------------------------------------------------------------------- /src/optimization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/src/optimization.cpp -------------------------------------------------------------------------------- /src/pairwise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/src/pairwise.cpp -------------------------------------------------------------------------------- /src/permutohedral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/src/permutohedral.cpp -------------------------------------------------------------------------------- /src/unary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/src/unary.cpp -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/src/util.h -------------------------------------------------------------------------------- /test_densecrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/test_densecrf.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/utils.py -------------------------------------------------------------------------------- /wrapper/Pydensecrf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lynetcha/densecrf-python/HEAD/wrapper/Pydensecrf.cpp --------------------------------------------------------------------------------