├── .gitignore ├── LICENSE.txt ├── README.md ├── WebARKit ├── WebARKitVideoLuma.cpp └── include │ └── WebARKitVideoLuma.h ├── include ├── AR │ ├── ar.h │ ├── arConfig.h │ ├── arFilterTransMat.h │ ├── arImageProc.h │ ├── arMulti.h │ ├── arosg.h │ ├── config.h │ ├── config.h.in │ ├── gsub_mtx.h │ ├── icp.h │ ├── icpCalib.h │ ├── icpCore.h │ ├── matrix.h │ ├── param.h │ ├── paramGL.h │ ├── video.h │ ├── videoConfig.h │ ├── videoLuma.h │ └── videoRGBA.h ├── AR2 │ ├── config.h │ ├── coord.h │ ├── featureSet.h │ ├── imageFormat.h │ ├── imageSet.h │ ├── marker.h │ ├── searchPoint.h │ ├── template.h │ ├── tracking.h │ └── util.h ├── ARUtil │ ├── file_utils.h │ ├── log.h │ ├── profile.h │ ├── system.h │ ├── thread_sub.h │ └── time.h ├── ARWrapper │ ├── ARController.h │ ├── ARMarker.h │ ├── ARMarkerMulti.h │ ├── ARMarkerNFT.h │ ├── ARMarkerSquare.h │ ├── ARPattern.h │ ├── ARToolKitWrapperExportedAPI.h │ ├── ARVideoSource.h │ ├── AndroidFeatures.h │ ├── ColorConversion.h │ ├── Error.h │ └── Platform.h ├── KPM │ ├── kpm.h │ └── kpmType.h └── WebARKit │ └── WebARKitLog.h └── lib └── SRC ├── AR ├── Makefile.in ├── ar3DCreateHandle.c ├── ar3DUtil.c ├── arCreateHandle.c ├── arDetectMarker.c ├── arDetectMarker2.c ├── arFilterTransMat.c ├── arGetLine.c ├── arGetMarkerInfo.c ├── arGetTransMat.c ├── arGetTransMatStereo.c ├── arImageProc.c ├── arLabeling.c ├── arLabelingSub │ ├── arLabelingPrivate.h │ ├── arLabelingSub.h │ ├── arLabelingSubDBIC.c │ ├── arLabelingSubDBRC.c │ ├── arLabelingSubDBZ.c │ ├── arLabelingSubDWIC.c │ ├── arLabelingSubDWRC.c │ ├── arLabelingSubDWZ.c │ ├── arLabelingSubEBIC.c │ ├── arLabelingSubEBRC.c │ ├── arLabelingSubEBZ.c │ ├── arLabelingSubEWIC.c │ ├── arLabelingSubEWRC.c │ └── arLabelingSubEWZ.c ├── arPattAttach.c ├── arPattCreateHandle.c ├── arPattGetID.c ├── arPattLoad.c ├── arPattSave.c ├── arUtil.c ├── mAlloc.c ├── mAllocDup.c ├── mAllocInv.c ├── mAllocMul.c ├── mAllocTrans.c ├── mAllocUnit.c ├── mDet.c ├── mDisp.c ├── mDup.c ├── mFree.c ├── mInv.c ├── mMul.c ├── mPCA.c ├── mSelfInv.c ├── mTrans.c ├── mUnit.c ├── paramChangeSize.c ├── paramClear.c ├── paramDecomp.c ├── paramDisp.c ├── paramDistortion.c ├── paramFile.c ├── paramGL.c ├── paramGetPerspective.c ├── paramLT.c ├── vAlloc.c ├── vDisp.c ├── vFree.c ├── vHouse.c ├── vInnerP.c └── vTridiag.c ├── AR2 ├── Makefile.in ├── coord.c ├── featureMap.c ├── featureSet.c ├── handle.c ├── imageSet.c ├── jpeg.c ├── marker.c ├── matching.c ├── matching2.c ├── searchPoint.c ├── selectTemplate.c ├── surface.c ├── template.c ├── tracking.c ├── tracking2d.c └── util.c ├── ARICP ├── Makefile.in ├── icpCalibStereo.c ├── icpCore.c ├── icpHandle.c ├── icpPoint.c ├── icpPointRobust.c ├── icpStereoHandle.c ├── icpStereoPoint.c ├── icpStereoPointRobust.c └── icpUtil.c ├── ARMulti ├── Makefile.in ├── arMultiFreeConfig.c ├── arMultiGetTransMat.c ├── arMultiGetTransMatStereo.c └── arMultiReadConfigFile.c ├── ARUtil ├── Makefile.in ├── crypt.c ├── crypt.h ├── file_utils.c ├── ftw.h ├── ioapi.c ├── ioapi.h ├── log.c ├── nftw.c ├── profile.c ├── system.c ├── thread_sub.c ├── thread_sub_winrt.cpp ├── thread_sub_winrt.h ├── time.c ├── unzip.c ├── unzip.h ├── zip.c └── zip.h ├── ARWrapper ├── ARController.cpp ├── ARMarker.cpp ├── ARMarkerMulti.cpp ├── ARMarkerNFT.cpp ├── ARMarkerSquare.cpp ├── ARPattern.cpp ├── ARToolKitWrapperExportedAPI.cpp ├── ARVideoSource.cpp ├── AndroidFeatures.cpp ├── ColorConversion.cpp ├── Makefile.in ├── trackingSub.c └── trackingSub.h ├── KPM ├── FreakMatcher │ ├── Eigen │ │ ├── AccelerateSupport │ │ ├── Cholesky │ │ ├── CholmodSupport │ │ ├── Core │ │ ├── Dense │ │ ├── Eigen │ │ ├── Eigenvalues │ │ ├── Geometry │ │ ├── Householder │ │ ├── IterativeLinearSolvers │ │ ├── Jacobi │ │ ├── KLUSupport │ │ ├── LU │ │ ├── MetisSupport │ │ ├── OrderingMethods │ │ ├── PaStiXSupport │ │ ├── PardisoSupport │ │ ├── QR │ │ ├── QtAlignedMalloc │ │ ├── SPQRSupport │ │ ├── SVD │ │ ├── Sparse │ │ ├── SparseCholesky │ │ ├── SparseCore │ │ ├── SparseLU │ │ ├── SparseQR │ │ ├── StdDeque │ │ ├── StdList │ │ ├── StdVector │ │ ├── SuperLUSupport │ │ ├── UmfPackSupport │ │ └── src │ │ │ ├── AccelerateSupport │ │ │ ├── AccelerateSupport.h │ │ │ └── InternalHeaderCheck.h │ │ │ ├── Cholesky │ │ │ ├── InternalHeaderCheck.h │ │ │ ├── LDLT.h │ │ │ ├── LLT.h │ │ │ └── LLT_LAPACKE.h │ │ │ ├── CholmodSupport │ │ │ ├── CholmodSupport.h │ │ │ └── InternalHeaderCheck.h │ │ │ ├── Core │ │ │ ├── ArithmeticSequence.h │ │ │ ├── Array.h │ │ │ ├── ArrayBase.h │ │ │ ├── ArrayWrapper.h │ │ │ ├── Assign.h │ │ │ ├── AssignEvaluator.h │ │ │ ├── Assign_MKL.h │ │ │ ├── BandMatrix.h │ │ │ ├── Block.h │ │ │ ├── BooleanRedux.h │ │ │ ├── CommaInitializer.h │ │ │ ├── ConditionEstimator.h │ │ │ ├── CoreEvaluators.h │ │ │ ├── CoreIterators.h │ │ │ ├── CwiseBinaryOp.h │ │ │ ├── CwiseNullaryOp.h │ │ │ ├── CwiseTernaryOp.h │ │ │ ├── CwiseUnaryOp.h │ │ │ ├── CwiseUnaryView.h │ │ │ ├── DenseBase.h │ │ │ ├── DenseCoeffsBase.h │ │ │ ├── DenseStorage.h │ │ │ ├── Diagonal.h │ │ │ ├── DiagonalMatrix.h │ │ │ ├── DiagonalProduct.h │ │ │ ├── Dot.h │ │ │ ├── EigenBase.h │ │ │ ├── ForceAlignedAccess.h │ │ │ ├── Fuzzy.h │ │ │ ├── GeneralProduct.h │ │ │ ├── GenericPacketMath.h │ │ │ ├── GlobalFunctions.h │ │ │ ├── IO.h │ │ │ ├── IndexedView.h │ │ │ ├── InternalHeaderCheck.h │ │ │ ├── Inverse.h │ │ │ ├── Map.h │ │ │ ├── MapBase.h │ │ │ ├── MathFunctions.h │ │ │ ├── MathFunctionsImpl.h │ │ │ ├── Matrix.h │ │ │ ├── MatrixBase.h │ │ │ ├── NestByValue.h │ │ │ ├── NoAlias.h │ │ │ ├── NumTraits.h │ │ │ ├── PartialReduxEvaluator.h │ │ │ ├── PermutationMatrix.h │ │ │ ├── PlainObjectBase.h │ │ │ ├── Product.h │ │ │ ├── ProductEvaluators.h │ │ │ ├── Random.h │ │ │ ├── Redux.h │ │ │ ├── Ref.h │ │ │ ├── Replicate.h │ │ │ ├── Reshaped.h │ │ │ ├── ReturnByValue.h │ │ │ ├── Reverse.h │ │ │ ├── Select.h │ │ │ ├── SelfAdjointView.h │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ ├── Solve.h │ │ │ ├── SolveTriangular.h │ │ │ ├── SolverBase.h │ │ │ ├── StableNorm.h │ │ │ ├── StlIterators.h │ │ │ ├── Stride.h │ │ │ ├── Swap.h │ │ │ ├── Transpose.h │ │ │ ├── Transpositions.h │ │ │ ├── TriangularMatrix.h │ │ │ ├── VectorBlock.h │ │ │ ├── VectorwiseOp.h │ │ │ ├── Visitor.h │ │ │ ├── arch │ │ │ │ ├── AVX │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── AVX512 │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── GemmKernel.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ ├── TrsmKernel.h │ │ │ │ │ ├── TrsmUnrolls.inc │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── AltiVec │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── MatrixProduct.h │ │ │ │ │ ├── MatrixProductCommon.h │ │ │ │ │ ├── MatrixProductMMA.h │ │ │ │ │ ├── MatrixVectorProduct.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── Default │ │ │ │ │ ├── BFloat16.h │ │ │ │ │ ├── ConjHelper.h │ │ │ │ │ ├── GenericPacketMathFunctions.h │ │ │ │ │ ├── GenericPacketMathFunctionsFwd.h │ │ │ │ │ ├── Half.h │ │ │ │ │ ├── Settings.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── GPU │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ ├── Tuple.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── HIP │ │ │ │ │ └── hcc │ │ │ │ │ │ └── math_constants.h │ │ │ │ ├── MSA │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── NEON │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ ├── TypeCasting.h │ │ │ │ │ └── UnaryFunctors.h │ │ │ │ ├── SSE │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── SVE │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── SYCL │ │ │ │ │ ├── InteropHeaders.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ ├── SyclMemoryModel.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ └── ZVector │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ ├── functors │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ ├── BinaryFunctors.h │ │ │ │ ├── NullaryFunctors.h │ │ │ │ ├── StlFunctors.h │ │ │ │ ├── TernaryFunctors.h │ │ │ │ └── UnaryFunctors.h │ │ │ ├── products │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ ├── Parallelizer.h │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ └── TriangularSolverVector.h │ │ │ └── util │ │ │ │ ├── BlasUtil.h │ │ │ │ ├── ConfigureVectorization.h │ │ │ │ ├── Constants.h │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ ├── IndexedViewHelper.h │ │ │ │ ├── IntegralConstant.h │ │ │ │ ├── MKL_support.h │ │ │ │ ├── Macros.h │ │ │ │ ├── Memory.h │ │ │ │ ├── Meta.h │ │ │ │ ├── NonMPL2.h │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ ├── ReshapedHelper.h │ │ │ │ ├── Serializer.h │ │ │ │ ├── StaticAssert.h │ │ │ │ ├── SymbolicIndex.h │ │ │ │ └── XprHelper.h │ │ │ ├── Eigenvalues │ │ │ ├── ComplexEigenSolver.h │ │ │ ├── ComplexSchur.h │ │ │ ├── ComplexSchur_LAPACKE.h │ │ │ ├── EigenSolver.h │ │ │ ├── GeneralizedEigenSolver.h │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ ├── HessenbergDecomposition.h │ │ │ ├── InternalHeaderCheck.h │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ ├── RealQZ.h │ │ │ ├── RealSchur.h │ │ │ ├── RealSchur_LAPACKE.h │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ │ └── Tridiagonalization.h │ │ │ ├── Geometry │ │ │ ├── AlignedBox.h │ │ │ ├── AngleAxis.h │ │ │ ├── EulerAngles.h │ │ │ ├── Homogeneous.h │ │ │ ├── Hyperplane.h │ │ │ ├── InternalHeaderCheck.h │ │ │ ├── OrthoMethods.h │ │ │ ├── ParametrizedLine.h │ │ │ ├── Quaternion.h │ │ │ ├── Rotation2D.h │ │ │ ├── RotationBase.h │ │ │ ├── Scaling.h │ │ │ ├── Transform.h │ │ │ ├── Translation.h │ │ │ ├── Umeyama.h │ │ │ └── arch │ │ │ │ └── Geometry_SIMD.h │ │ │ ├── Householder │ │ │ ├── BlockHouseholder.h │ │ │ ├── Householder.h │ │ │ ├── HouseholderSequence.h │ │ │ └── InternalHeaderCheck.h │ │ │ ├── IterativeLinearSolvers │ │ │ ├── BasicPreconditioners.h │ │ │ ├── BiCGSTAB.h │ │ │ ├── ConjugateGradient.h │ │ │ ├── IncompleteCholesky.h │ │ │ ├── IncompleteLUT.h │ │ │ ├── InternalHeaderCheck.h │ │ │ ├── IterativeSolverBase.h │ │ │ ├── LeastSquareConjugateGradient.h │ │ │ └── SolveWithGuess.h │ │ │ ├── Jacobi │ │ │ ├── InternalHeaderCheck.h │ │ │ └── Jacobi.h │ │ │ ├── KLUSupport │ │ │ ├── InternalHeaderCheck.h │ │ │ └── KLUSupport.h │ │ │ ├── LU │ │ │ ├── Determinant.h │ │ │ ├── FullPivLU.h │ │ │ ├── InternalHeaderCheck.h │ │ │ ├── InverseImpl.h │ │ │ ├── PartialPivLU.h │ │ │ ├── PartialPivLU_LAPACKE.h │ │ │ └── arch │ │ │ │ └── InverseSize4.h │ │ │ ├── MetisSupport │ │ │ ├── InternalHeaderCheck.h │ │ │ └── MetisSupport.h │ │ │ ├── OrderingMethods │ │ │ ├── Amd.h │ │ │ ├── Eigen_Colamd.h │ │ │ ├── InternalHeaderCheck.h │ │ │ └── Ordering.h │ │ │ ├── PaStiXSupport │ │ │ ├── InternalHeaderCheck.h │ │ │ └── PaStiXSupport.h │ │ │ ├── PardisoSupport │ │ │ ├── InternalHeaderCheck.h │ │ │ └── PardisoSupport.h │ │ │ ├── QR │ │ │ ├── ColPivHouseholderQR.h │ │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ ├── FullPivHouseholderQR.h │ │ │ ├── HouseholderQR.h │ │ │ ├── HouseholderQR_LAPACKE.h │ │ │ └── InternalHeaderCheck.h │ │ │ ├── SPQRSupport │ │ │ ├── InternalHeaderCheck.h │ │ │ └── SuiteSparseQRSupport.h │ │ │ ├── SVD │ │ │ ├── BDCSVD.h │ │ │ ├── InternalHeaderCheck.h │ │ │ ├── JacobiSVD.h │ │ │ ├── JacobiSVD_LAPACKE.h │ │ │ ├── SVDBase.h │ │ │ └── UpperBidiagonalization.h │ │ │ ├── SparseCholesky │ │ │ ├── InternalHeaderCheck.h │ │ │ ├── SimplicialCholesky.h │ │ │ └── SimplicialCholesky_impl.h │ │ │ ├── SparseCore │ │ │ ├── AmbiVector.h │ │ │ ├── CompressedStorage.h │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ ├── InternalHeaderCheck.h │ │ │ ├── SparseAssign.h │ │ │ ├── SparseBlock.h │ │ │ ├── SparseColEtree.h │ │ │ ├── SparseCompressedBase.h │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ ├── SparseDenseProduct.h │ │ │ ├── SparseDiagonalProduct.h │ │ │ ├── SparseDot.h │ │ │ ├── SparseFuzzy.h │ │ │ ├── SparseMap.h │ │ │ ├── SparseMatrix.h │ │ │ ├── SparseMatrixBase.h │ │ │ ├── SparsePermutation.h │ │ │ ├── SparseProduct.h │ │ │ ├── SparseRedux.h │ │ │ ├── SparseRef.h │ │ │ ├── SparseSelfAdjointView.h │ │ │ ├── SparseSolverBase.h │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ ├── SparseTranspose.h │ │ │ ├── SparseTriangularView.h │ │ │ ├── SparseUtil.h │ │ │ ├── SparseVector.h │ │ │ ├── SparseView.h │ │ │ └── TriangularSolver.h │ │ │ ├── SparseLU │ │ │ ├── InternalHeaderCheck.h │ │ │ ├── SparseLU.h │ │ │ ├── SparseLUImpl.h │ │ │ ├── SparseLU_Memory.h │ │ │ ├── SparseLU_Structs.h │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ ├── SparseLU_Utils.h │ │ │ ├── SparseLU_column_bmod.h │ │ │ ├── SparseLU_column_dfs.h │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ ├── SparseLU_panel_bmod.h │ │ │ ├── SparseLU_panel_dfs.h │ │ │ ├── SparseLU_pivotL.h │ │ │ ├── SparseLU_pruneL.h │ │ │ └── SparseLU_relax_snode.h │ │ │ ├── SparseQR │ │ │ ├── InternalHeaderCheck.h │ │ │ └── SparseQR.h │ │ │ ├── StlSupport │ │ │ ├── StdDeque.h │ │ │ ├── StdList.h │ │ │ ├── StdVector.h │ │ │ └── details.h │ │ │ ├── SuperLUSupport │ │ │ ├── InternalHeaderCheck.h │ │ │ └── SuperLUSupport.h │ │ │ ├── UmfPackSupport │ │ │ ├── InternalHeaderCheck.h │ │ │ └── UmfPackSupport.h │ │ │ ├── misc │ │ │ ├── Image.h │ │ │ ├── InternalHeaderCheck.h │ │ │ ├── Kernel.h │ │ │ ├── RealSvd2x2.h │ │ │ ├── blas.h │ │ │ ├── lapack.h │ │ │ ├── lapacke.h │ │ │ ├── lapacke_helpers.h │ │ │ └── lapacke_mangling.h │ │ │ └── plugins │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ ├── BlockMethods.h │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ ├── IndexedViewMethods.h │ │ │ ├── InternalHeaderCheck.h │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ ├── MatrixCwiseUnaryOps.h │ │ │ └── ReshapedMethods.h │ ├── detectors │ │ ├── DoG_scale_invariant_detector.cpp │ │ ├── DoG_scale_invariant_detector.h │ │ ├── gaussian_scale_space_pyramid.cpp │ │ ├── gaussian_scale_space_pyramid.h │ │ ├── gradients.cpp │ │ ├── gradients.h │ │ ├── harris-inline.h │ │ ├── harris.cpp │ │ ├── harris.h │ │ ├── interpolate.h │ │ ├── orientation_assignment.cpp │ │ ├── orientation_assignment.h │ │ ├── pyramid-inline.h │ │ ├── pyramid.cpp │ │ └── pyramid.h │ ├── facade │ │ ├── visual_database_facade.cpp │ │ └── visual_database_facade.h │ ├── framework │ │ ├── date_time.cpp │ │ ├── date_time.h │ │ ├── error.h │ │ ├── exception.h │ │ ├── image.cpp │ │ ├── image.h │ │ ├── image_utils.h │ │ ├── logger.cpp │ │ ├── logger.h │ │ ├── timers.cpp │ │ └── timers.h │ ├── homography_estimation │ │ ├── homography_solver.h │ │ └── robust_homography.h │ ├── matchers │ │ ├── binary_hierarchical_clustering.h │ │ ├── feature_matcher-inline.h │ │ ├── feature_matcher.h │ │ ├── feature_point.h │ │ ├── feature_store.h │ │ ├── feature_store_io.cpp │ │ ├── feature_store_io.h │ │ ├── freak.cpp │ │ ├── freak.h │ │ ├── freak84-inline.h │ │ ├── hough_similarity_voting.cpp │ │ ├── hough_similarity_voting.h │ │ ├── keyframe.h │ │ ├── kmedoids.h │ │ ├── matcher_types.h │ │ ├── visual_database-inline.h │ │ ├── visual_database.h │ │ ├── visual_database_io.cpp │ │ ├── visual_database_io.h │ │ └── visual_database_types.h │ ├── math │ │ ├── cholesky.h │ │ ├── cholesky_linear_solvers.h │ │ ├── geometry.h │ │ ├── hamming.h │ │ ├── homography.h │ │ ├── indexing.h │ │ ├── linear_algebra.h │ │ ├── linear_solvers.h │ │ ├── math_io.cpp │ │ ├── math_io.h │ │ ├── math_utils.h │ │ ├── matrix.h │ │ ├── polynomial.h │ │ ├── quaternion.h │ │ ├── rand.h │ │ └── robustifiers.h │ ├── unsupported │ │ ├── CMakeLists.txt │ │ ├── Eigen │ │ │ ├── AdolcForward │ │ │ ├── AlignedVector3 │ │ │ ├── ArpackSupport │ │ │ ├── AutoDiff │ │ │ ├── BVH │ │ │ ├── CMakeLists.txt │ │ │ ├── CXX11 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Tensor │ │ │ │ ├── TensorSymmetry │ │ │ │ ├── ThreadPool │ │ │ │ └── src │ │ │ │ │ ├── Tensor │ │ │ │ │ ├── InternalHeaderCheck.h │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Tensor.h │ │ │ │ │ ├── TensorArgMax.h │ │ │ │ │ ├── TensorAssign.h │ │ │ │ │ ├── TensorBase.h │ │ │ │ │ ├── TensorBlock.h │ │ │ │ │ ├── TensorBroadcasting.h │ │ │ │ │ ├── TensorChipping.h │ │ │ │ │ ├── TensorConcatenation.h │ │ │ │ │ ├── TensorContraction.h │ │ │ │ │ ├── TensorContractionBlocking.h │ │ │ │ │ ├── TensorContractionCuda.h │ │ │ │ │ ├── TensorContractionGpu.h │ │ │ │ │ ├── TensorContractionMapper.h │ │ │ │ │ ├── TensorContractionSycl.h │ │ │ │ │ ├── TensorContractionThreadPool.h │ │ │ │ │ ├── TensorConversion.h │ │ │ │ │ ├── TensorConvolution.h │ │ │ │ │ ├── TensorConvolutionSycl.h │ │ │ │ │ ├── TensorCostModel.h │ │ │ │ │ ├── TensorCustomOp.h │ │ │ │ │ ├── TensorDevice.h │ │ │ │ │ ├── TensorDeviceCuda.h │ │ │ │ │ ├── TensorDeviceDefault.h │ │ │ │ │ ├── TensorDeviceGpu.h │ │ │ │ │ ├── TensorDeviceSycl.h │ │ │ │ │ ├── TensorDeviceThreadPool.h │ │ │ │ │ ├── TensorDimensionList.h │ │ │ │ │ ├── TensorDimensions.h │ │ │ │ │ ├── TensorEvalTo.h │ │ │ │ │ ├── TensorEvaluator.h │ │ │ │ │ ├── TensorExecutor.h │ │ │ │ │ ├── TensorExpr.h │ │ │ │ │ ├── TensorFFT.h │ │ │ │ │ ├── TensorFixedSize.h │ │ │ │ │ ├── TensorForcedEval.h │ │ │ │ │ ├── TensorForwardDeclarations.h │ │ │ │ │ ├── TensorFunctors.h │ │ │ │ │ ├── TensorGenerator.h │ │ │ │ │ ├── TensorGlobalFunctions.h │ │ │ │ │ ├── TensorGpuHipCudaDefines.h │ │ │ │ │ ├── TensorGpuHipCudaUndefines.h │ │ │ │ │ ├── TensorIO.h │ │ │ │ │ ├── TensorImagePatch.h │ │ │ │ │ ├── TensorIndexList.h │ │ │ │ │ ├── TensorInflation.h │ │ │ │ │ ├── TensorInitializer.h │ │ │ │ │ ├── TensorIntDiv.h │ │ │ │ │ ├── TensorLayoutSwap.h │ │ │ │ │ ├── TensorMacros.h │ │ │ │ │ ├── TensorMap.h │ │ │ │ │ ├── TensorMeta.h │ │ │ │ │ ├── TensorMorphing.h │ │ │ │ │ ├── TensorPadding.h │ │ │ │ │ ├── TensorPatch.h │ │ │ │ │ ├── TensorRandom.h │ │ │ │ │ ├── TensorReduction.h │ │ │ │ │ ├── TensorReductionGpu.h │ │ │ │ │ ├── TensorReductionSycl.h │ │ │ │ │ ├── TensorRef.h │ │ │ │ │ ├── TensorReverse.h │ │ │ │ │ ├── TensorScan.h │ │ │ │ │ ├── TensorScanSycl.h │ │ │ │ │ ├── TensorShuffling.h │ │ │ │ │ ├── TensorStorage.h │ │ │ │ │ ├── TensorStriding.h │ │ │ │ │ ├── TensorTrace.h │ │ │ │ │ ├── TensorTraits.h │ │ │ │ │ ├── TensorUInt128.h │ │ │ │ │ └── TensorVolumePatch.h │ │ │ │ │ ├── TensorSymmetry │ │ │ │ │ ├── DynamicSymmetry.h │ │ │ │ │ ├── InternalHeaderCheck.h │ │ │ │ │ ├── StaticSymmetry.h │ │ │ │ │ ├── Symmetry.h │ │ │ │ │ └── util │ │ │ │ │ │ └── TemplateGroupTheory.h │ │ │ │ │ ├── ThreadPool │ │ │ │ │ ├── Barrier.h │ │ │ │ │ ├── EventCount.h │ │ │ │ │ ├── InternalHeaderCheck.h │ │ │ │ │ ├── NonBlockingThreadPool.h │ │ │ │ │ ├── RunQueue.h │ │ │ │ │ ├── ThreadCancel.h │ │ │ │ │ ├── ThreadEnvironment.h │ │ │ │ │ ├── ThreadLocal.h │ │ │ │ │ ├── ThreadPoolInterface.h │ │ │ │ │ └── ThreadYield.h │ │ │ │ │ └── util │ │ │ │ │ ├── CXX11Meta.h │ │ │ │ │ ├── CXX11Workarounds.h │ │ │ │ │ ├── EmulateArray.h │ │ │ │ │ └── MaxSizeVector.h │ │ │ ├── EulerAngles │ │ │ ├── FFT │ │ │ ├── IterativeSolvers │ │ │ ├── KroneckerProduct │ │ │ ├── LevenbergMarquardt │ │ │ ├── MPRealSupport │ │ │ ├── MatrixFunctions │ │ │ ├── MoreVectorization │ │ │ ├── NNLS │ │ │ ├── NonLinearOptimization │ │ │ ├── NumericalDiff │ │ │ ├── OpenGLSupport │ │ │ ├── Polynomials │ │ │ ├── Skyline │ │ │ ├── SparseExtra │ │ │ ├── SpecialFunctions │ │ │ ├── Splines │ │ │ └── src │ │ │ │ ├── AutoDiff │ │ │ │ ├── AutoDiffJacobian.h │ │ │ │ ├── AutoDiffScalar.h │ │ │ │ ├── AutoDiffVector.h │ │ │ │ └── InternalHeaderCheck.h │ │ │ │ ├── BVH │ │ │ │ ├── BVAlgorithms.h │ │ │ │ ├── InternalHeaderCheck.h │ │ │ │ └── KdBVH.h │ │ │ │ ├── Eigenvalues │ │ │ │ ├── ArpackSelfAdjointEigenSolver.h │ │ │ │ └── InternalHeaderCheck.h │ │ │ │ ├── EulerAngles │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── EulerAngles.h │ │ │ │ ├── EulerSystem.h │ │ │ │ └── InternalHeaderCheck.h │ │ │ │ ├── FFT │ │ │ │ ├── InternalHeaderCheck.h │ │ │ │ ├── ei_fftw_impl.h │ │ │ │ ├── ei_imklfft_impl.h │ │ │ │ ├── ei_kissfft_impl.h │ │ │ │ └── ei_pocketfft_impl.h │ │ │ │ ├── IterativeSolvers │ │ │ │ ├── BiCGSTABL.h │ │ │ │ ├── ConstrainedConjGrad.h │ │ │ │ ├── DGMRES.h │ │ │ │ ├── GMRES.h │ │ │ │ ├── IDRS.h │ │ │ │ ├── IDRSTABL.h │ │ │ │ ├── IncompleteLU.h │ │ │ │ ├── InternalHeaderCheck.h │ │ │ │ ├── IterationController.h │ │ │ │ ├── MINRES.h │ │ │ │ └── Scaling.h │ │ │ │ ├── KroneckerProduct │ │ │ │ ├── InternalHeaderCheck.h │ │ │ │ └── KroneckerTensorProduct.h │ │ │ │ ├── LevenbergMarquardt │ │ │ │ ├── CopyrightMINPACK.txt │ │ │ │ ├── InternalHeaderCheck.h │ │ │ │ ├── LMcovar.h │ │ │ │ ├── LMonestep.h │ │ │ │ ├── LMpar.h │ │ │ │ ├── LMqrsolv.h │ │ │ │ └── LevenbergMarquardt.h │ │ │ │ ├── MatrixFunctions │ │ │ │ ├── InternalHeaderCheck.h │ │ │ │ ├── MatrixExponential.h │ │ │ │ ├── MatrixFunction.h │ │ │ │ ├── MatrixLogarithm.h │ │ │ │ ├── MatrixPower.h │ │ │ │ ├── MatrixSquareRoot.h │ │ │ │ └── StemFunction.h │ │ │ │ ├── MoreVectorization │ │ │ │ ├── InternalHeaderCheck.h │ │ │ │ └── MathFunctions.h │ │ │ │ ├── NonLinearOptimization │ │ │ │ ├── HybridNonLinearSolver.h │ │ │ │ ├── InternalHeaderCheck.h │ │ │ │ ├── LevenbergMarquardt.h │ │ │ │ ├── chkder.h │ │ │ │ ├── covar.h │ │ │ │ ├── dogleg.h │ │ │ │ ├── fdjac1.h │ │ │ │ ├── lmpar.h │ │ │ │ ├── qrsolv.h │ │ │ │ ├── r1mpyq.h │ │ │ │ ├── r1updt.h │ │ │ │ └── rwupdt.h │ │ │ │ ├── NumericalDiff │ │ │ │ ├── InternalHeaderCheck.h │ │ │ │ └── NumericalDiff.h │ │ │ │ ├── Polynomials │ │ │ │ ├── Companion.h │ │ │ │ ├── InternalHeaderCheck.h │ │ │ │ ├── PolynomialSolver.h │ │ │ │ └── PolynomialUtils.h │ │ │ │ ├── Skyline │ │ │ │ ├── InternalHeaderCheck.h │ │ │ │ ├── SkylineInplaceLU.h │ │ │ │ ├── SkylineMatrix.h │ │ │ │ ├── SkylineMatrixBase.h │ │ │ │ ├── SkylineProduct.h │ │ │ │ ├── SkylineStorage.h │ │ │ │ └── SkylineUtil.h │ │ │ │ ├── SparseExtra │ │ │ │ ├── BlockSparseMatrix.h │ │ │ │ ├── InternalHeaderCheck.h │ │ │ │ ├── MarketIO.h │ │ │ │ ├── MatrixMarketIterator.h │ │ │ │ └── RandomSetter.h │ │ │ │ ├── SpecialFunctions │ │ │ │ ├── BesselFunctionsArrayAPI.h │ │ │ │ ├── BesselFunctionsBFloat16.h │ │ │ │ ├── BesselFunctionsFunctors.h │ │ │ │ ├── BesselFunctionsHalf.h │ │ │ │ ├── BesselFunctionsImpl.h │ │ │ │ ├── BesselFunctionsPacketMath.h │ │ │ │ ├── HipVectorCompatibility.h │ │ │ │ ├── InternalHeaderCheck.h │ │ │ │ ├── SpecialFunctionsArrayAPI.h │ │ │ │ ├── SpecialFunctionsBFloat16.h │ │ │ │ ├── SpecialFunctionsFunctors.h │ │ │ │ ├── SpecialFunctionsHalf.h │ │ │ │ ├── SpecialFunctionsImpl.h │ │ │ │ ├── SpecialFunctionsPacketMath.h │ │ │ │ └── arch │ │ │ │ │ ├── AVX │ │ │ │ │ ├── BesselFunctions.h │ │ │ │ │ └── SpecialFunctions.h │ │ │ │ │ ├── AVX512 │ │ │ │ │ ├── BesselFunctions.h │ │ │ │ │ └── SpecialFunctions.h │ │ │ │ │ ├── GPU │ │ │ │ │ └── SpecialFunctions.h │ │ │ │ │ └── NEON │ │ │ │ │ ├── BesselFunctions.h │ │ │ │ │ └── SpecialFunctions.h │ │ │ │ └── Splines │ │ │ │ ├── InternalHeaderCheck.h │ │ │ │ ├── Spline.h │ │ │ │ ├── SplineFitting.h │ │ │ │ └── SplineFwd.h │ │ ├── README.txt │ │ ├── bench │ │ │ └── bench_svd.cpp │ │ ├── doc │ │ │ ├── CMakeLists.txt │ │ │ ├── Overview.dox │ │ │ ├── SYCL.dox │ │ │ ├── eigendoxy_layout.xml.in │ │ │ ├── examples │ │ │ │ ├── BVH_Example.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── EulerAngles.cpp │ │ │ │ ├── FFT.cpp │ │ │ │ ├── MatrixExponential.cpp │ │ │ │ ├── MatrixFunction.cpp │ │ │ │ ├── MatrixLogarithm.cpp │ │ │ │ ├── MatrixPower.cpp │ │ │ │ ├── MatrixPower_optimal.cpp │ │ │ │ ├── MatrixSine.cpp │ │ │ │ ├── MatrixSinh.cpp │ │ │ │ ├── MatrixSquareRoot.cpp │ │ │ │ ├── PolynomialSolver1.cpp │ │ │ │ ├── PolynomialUtils1.cpp │ │ │ │ └── SYCL │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── CwiseMul.cpp │ │ │ └── snippets │ │ │ │ └── CMakeLists.txt │ │ └── test │ │ │ ├── BVH.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── EulerAngles.cpp │ │ │ ├── FFT.cpp │ │ │ ├── FFTW.cpp │ │ │ ├── NNLS.cpp │ │ │ ├── NonLinearOptimization.cpp │ │ │ ├── NumericalDiff.cpp │ │ │ ├── alignedvector3.cpp │ │ │ ├── autodiff.cpp │ │ │ ├── autodiff_scalar.cpp │ │ │ ├── bessel_functions.cpp │ │ │ ├── bicgstabl.cpp │ │ │ ├── cxx11_eventcount.cpp │ │ │ ├── cxx11_maxsizevector.cpp │ │ │ ├── cxx11_meta.cpp │ │ │ ├── cxx11_non_blocking_thread_pool.cpp │ │ │ ├── cxx11_runqueue.cpp │ │ │ ├── cxx11_tensor_argmax.cpp │ │ │ ├── cxx11_tensor_argmax_gpu.cu │ │ │ ├── cxx11_tensor_argmax_sycl.cpp │ │ │ ├── cxx11_tensor_assign.cpp │ │ │ ├── cxx11_tensor_block_access.cpp │ │ │ ├── cxx11_tensor_block_eval.cpp │ │ │ ├── cxx11_tensor_block_io.cpp │ │ │ ├── cxx11_tensor_broadcast_sycl.cpp │ │ │ ├── cxx11_tensor_broadcasting.cpp │ │ │ ├── cxx11_tensor_builtins_sycl.cpp │ │ │ ├── cxx11_tensor_cast_float16_gpu.cu │ │ │ ├── cxx11_tensor_casts.cpp │ │ │ ├── cxx11_tensor_chipping.cpp │ │ │ ├── cxx11_tensor_chipping_sycl.cpp │ │ │ ├── cxx11_tensor_comparisons.cpp │ │ │ ├── cxx11_tensor_complex_cwise_ops_gpu.cu │ │ │ ├── cxx11_tensor_complex_gpu.cu │ │ │ ├── cxx11_tensor_concatenation.cpp │ │ │ ├── cxx11_tensor_concatenation_sycl.cpp │ │ │ ├── cxx11_tensor_const.cpp │ │ │ ├── cxx11_tensor_contract_gpu.cu │ │ │ ├── cxx11_tensor_contract_sycl.cpp │ │ │ ├── cxx11_tensor_contraction.cpp │ │ │ ├── cxx11_tensor_convolution.cpp │ │ │ ├── cxx11_tensor_convolution_sycl.cpp │ │ │ ├── cxx11_tensor_custom_index.cpp │ │ │ ├── cxx11_tensor_custom_op.cpp │ │ │ ├── cxx11_tensor_custom_op_sycl.cpp │ │ │ ├── cxx11_tensor_device.cu │ │ │ ├── cxx11_tensor_device_sycl.cpp │ │ │ ├── cxx11_tensor_dimension.cpp │ │ │ ├── cxx11_tensor_empty.cpp │ │ │ ├── cxx11_tensor_executor.cpp │ │ │ ├── cxx11_tensor_expr.cpp │ │ │ ├── cxx11_tensor_fft.cpp │ │ │ ├── cxx11_tensor_fixed_size.cpp │ │ │ ├── cxx11_tensor_forced_eval.cpp │ │ │ ├── cxx11_tensor_forced_eval_sycl.cpp │ │ │ ├── cxx11_tensor_generator.cpp │ │ │ ├── cxx11_tensor_generator_sycl.cpp │ │ │ ├── cxx11_tensor_gpu.cu │ │ │ ├── cxx11_tensor_ifft.cpp │ │ │ ├── cxx11_tensor_image_op_sycl.cpp │ │ │ ├── cxx11_tensor_image_patch.cpp │ │ │ ├── cxx11_tensor_image_patch_sycl.cpp │ │ │ ├── cxx11_tensor_index_list.cpp │ │ │ ├── cxx11_tensor_inflation.cpp │ │ │ ├── cxx11_tensor_inflation_sycl.cpp │ │ │ ├── cxx11_tensor_intdiv.cpp │ │ │ ├── cxx11_tensor_io.cpp │ │ │ ├── cxx11_tensor_layout_swap.cpp │ │ │ ├── cxx11_tensor_layout_swap_sycl.cpp │ │ │ ├── cxx11_tensor_lvalue.cpp │ │ │ ├── cxx11_tensor_map.cpp │ │ │ ├── cxx11_tensor_math.cpp │ │ │ ├── cxx11_tensor_math_sycl.cpp │ │ │ ├── cxx11_tensor_mixed_indices.cpp │ │ │ ├── cxx11_tensor_morphing.cpp │ │ │ ├── cxx11_tensor_morphing_sycl.cpp │ │ │ ├── cxx11_tensor_move.cpp │ │ │ ├── cxx11_tensor_notification.cpp │ │ │ ├── cxx11_tensor_of_bfloat16_gpu.cu │ │ │ ├── cxx11_tensor_of_complex.cpp │ │ │ ├── cxx11_tensor_of_const_values.cpp │ │ │ ├── cxx11_tensor_of_float16_gpu.cu │ │ │ ├── cxx11_tensor_of_strings.cpp │ │ │ ├── cxx11_tensor_padding.cpp │ │ │ ├── cxx11_tensor_padding_sycl.cpp │ │ │ ├── cxx11_tensor_patch.cpp │ │ │ ├── cxx11_tensor_patch_sycl.cpp │ │ │ ├── cxx11_tensor_random.cpp │ │ │ ├── cxx11_tensor_random_gpu.cu │ │ │ ├── cxx11_tensor_random_sycl.cpp │ │ │ ├── cxx11_tensor_reduction.cpp │ │ │ ├── cxx11_tensor_reduction_gpu.cu │ │ │ ├── cxx11_tensor_reduction_sycl.cpp │ │ │ ├── cxx11_tensor_ref.cpp │ │ │ ├── cxx11_tensor_reverse.cpp │ │ │ ├── cxx11_tensor_reverse_sycl.cpp │ │ │ ├── cxx11_tensor_roundings.cpp │ │ │ ├── cxx11_tensor_scan.cpp │ │ │ ├── cxx11_tensor_scan_gpu.cu │ │ │ ├── cxx11_tensor_scan_sycl.cpp │ │ │ ├── cxx11_tensor_shuffling.cpp │ │ │ ├── cxx11_tensor_shuffling_sycl.cpp │ │ │ ├── cxx11_tensor_simple.cpp │ │ │ ├── cxx11_tensor_striding.cpp │ │ │ ├── cxx11_tensor_striding_sycl.cpp │ │ │ ├── cxx11_tensor_sugar.cpp │ │ │ ├── cxx11_tensor_sycl.cpp │ │ │ ├── cxx11_tensor_symmetry.cpp │ │ │ ├── cxx11_tensor_thread_local.cpp │ │ │ ├── cxx11_tensor_thread_pool.cpp │ │ │ ├── cxx11_tensor_trace.cpp │ │ │ ├── cxx11_tensor_uint128.cpp │ │ │ ├── cxx11_tensor_volume_patch.cpp │ │ │ ├── cxx11_tensor_volume_patch_sycl.cpp │ │ │ ├── dgmres.cpp │ │ │ ├── fft_test_shared.h │ │ │ ├── forward_adolc.cpp │ │ │ ├── gmres.cpp │ │ │ ├── idrs.cpp │ │ │ ├── idrstabl.cpp │ │ │ ├── kronecker_product.cpp │ │ │ ├── levenberg_marquardt.cpp │ │ │ ├── matrix_exponential.cpp │ │ │ ├── matrix_function.cpp │ │ │ ├── matrix_functions.h │ │ │ ├── matrix_power.cpp │ │ │ ├── matrix_square_root.cpp │ │ │ ├── minres.cpp │ │ │ ├── mklfft.cpp │ │ │ ├── mpreal_support.cpp │ │ │ ├── openglsupport.cpp │ │ │ ├── pocketfft.cpp │ │ │ ├── polynomialsolver.cpp │ │ │ ├── polynomialutils.cpp │ │ │ ├── sparse_extra.cpp │ │ │ ├── special_functions.cpp │ │ │ ├── special_packetmath.cpp │ │ │ └── splines.cpp │ └── utils │ │ ├── feature_drawing.h │ │ ├── partial_sort.h │ │ └── point.h ├── Makefile.in ├── kpmFopen.c ├── kpmFopen.h ├── kpmHandle.cpp ├── kpmMatching.cpp ├── kpmPrivate.h ├── kpmRefDataSet.cpp ├── kpmResult.cpp └── kpmUtil.cpp ├── Makefile.in ├── Video └── video.c └── WebARKit └── WebARKitLog.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | include/AR/config.h -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/README.md -------------------------------------------------------------------------------- /WebARKit/WebARKitVideoLuma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/WebARKit/WebARKitVideoLuma.cpp -------------------------------------------------------------------------------- /WebARKit/include/WebARKitVideoLuma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/WebARKit/include/WebARKitVideoLuma.h -------------------------------------------------------------------------------- /include/AR/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR/ar.h -------------------------------------------------------------------------------- /include/AR/arConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR/arConfig.h -------------------------------------------------------------------------------- /include/AR/arFilterTransMat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR/arFilterTransMat.h -------------------------------------------------------------------------------- /include/AR/arImageProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR/arImageProc.h -------------------------------------------------------------------------------- /include/AR/arMulti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR/arMulti.h -------------------------------------------------------------------------------- /include/AR/arosg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR/arosg.h -------------------------------------------------------------------------------- /include/AR/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR/config.h -------------------------------------------------------------------------------- /include/AR/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR/config.h.in -------------------------------------------------------------------------------- /include/AR/gsub_mtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR/gsub_mtx.h -------------------------------------------------------------------------------- /include/AR/icp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR/icp.h -------------------------------------------------------------------------------- /include/AR/icpCalib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR/icpCalib.h -------------------------------------------------------------------------------- /include/AR/icpCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR/icpCore.h -------------------------------------------------------------------------------- /include/AR/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR/matrix.h -------------------------------------------------------------------------------- /include/AR/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR/param.h -------------------------------------------------------------------------------- /include/AR/paramGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR/paramGL.h -------------------------------------------------------------------------------- /include/AR/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR/video.h -------------------------------------------------------------------------------- /include/AR/videoConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR/videoConfig.h -------------------------------------------------------------------------------- /include/AR/videoLuma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR/videoLuma.h -------------------------------------------------------------------------------- /include/AR/videoRGBA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR/videoRGBA.h -------------------------------------------------------------------------------- /include/AR2/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR2/config.h -------------------------------------------------------------------------------- /include/AR2/coord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR2/coord.h -------------------------------------------------------------------------------- /include/AR2/featureSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR2/featureSet.h -------------------------------------------------------------------------------- /include/AR2/imageFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR2/imageFormat.h -------------------------------------------------------------------------------- /include/AR2/imageSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR2/imageSet.h -------------------------------------------------------------------------------- /include/AR2/marker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR2/marker.h -------------------------------------------------------------------------------- /include/AR2/searchPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR2/searchPoint.h -------------------------------------------------------------------------------- /include/AR2/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR2/template.h -------------------------------------------------------------------------------- /include/AR2/tracking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR2/tracking.h -------------------------------------------------------------------------------- /include/AR2/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/AR2/util.h -------------------------------------------------------------------------------- /include/ARUtil/file_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/ARUtil/file_utils.h -------------------------------------------------------------------------------- /include/ARUtil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/ARUtil/log.h -------------------------------------------------------------------------------- /include/ARUtil/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/ARUtil/profile.h -------------------------------------------------------------------------------- /include/ARUtil/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/ARUtil/system.h -------------------------------------------------------------------------------- /include/ARUtil/thread_sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/ARUtil/thread_sub.h -------------------------------------------------------------------------------- /include/ARUtil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/ARUtil/time.h -------------------------------------------------------------------------------- /include/ARWrapper/ARController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/ARWrapper/ARController.h -------------------------------------------------------------------------------- /include/ARWrapper/ARMarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/ARWrapper/ARMarker.h -------------------------------------------------------------------------------- /include/ARWrapper/ARMarkerMulti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/ARWrapper/ARMarkerMulti.h -------------------------------------------------------------------------------- /include/ARWrapper/ARMarkerNFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/ARWrapper/ARMarkerNFT.h -------------------------------------------------------------------------------- /include/ARWrapper/ARMarkerSquare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/ARWrapper/ARMarkerSquare.h -------------------------------------------------------------------------------- /include/ARWrapper/ARPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/ARWrapper/ARPattern.h -------------------------------------------------------------------------------- /include/ARWrapper/ARToolKitWrapperExportedAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/ARWrapper/ARToolKitWrapperExportedAPI.h -------------------------------------------------------------------------------- /include/ARWrapper/ARVideoSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/ARWrapper/ARVideoSource.h -------------------------------------------------------------------------------- /include/ARWrapper/AndroidFeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/ARWrapper/AndroidFeatures.h -------------------------------------------------------------------------------- /include/ARWrapper/ColorConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/ARWrapper/ColorConversion.h -------------------------------------------------------------------------------- /include/ARWrapper/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/ARWrapper/Error.h -------------------------------------------------------------------------------- /include/ARWrapper/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/ARWrapper/Platform.h -------------------------------------------------------------------------------- /include/KPM/kpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/KPM/kpm.h -------------------------------------------------------------------------------- /include/KPM/kpmType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/KPM/kpmType.h -------------------------------------------------------------------------------- /include/WebARKit/WebARKitLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/include/WebARKit/WebARKitLog.h -------------------------------------------------------------------------------- /lib/SRC/AR/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/Makefile.in -------------------------------------------------------------------------------- /lib/SRC/AR/ar3DCreateHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/ar3DCreateHandle.c -------------------------------------------------------------------------------- /lib/SRC/AR/ar3DUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/ar3DUtil.c -------------------------------------------------------------------------------- /lib/SRC/AR/arCreateHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arCreateHandle.c -------------------------------------------------------------------------------- /lib/SRC/AR/arDetectMarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arDetectMarker.c -------------------------------------------------------------------------------- /lib/SRC/AR/arDetectMarker2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arDetectMarker2.c -------------------------------------------------------------------------------- /lib/SRC/AR/arFilterTransMat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arFilterTransMat.c -------------------------------------------------------------------------------- /lib/SRC/AR/arGetLine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arGetLine.c -------------------------------------------------------------------------------- /lib/SRC/AR/arGetMarkerInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arGetMarkerInfo.c -------------------------------------------------------------------------------- /lib/SRC/AR/arGetTransMat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arGetTransMat.c -------------------------------------------------------------------------------- /lib/SRC/AR/arGetTransMatStereo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arGetTransMatStereo.c -------------------------------------------------------------------------------- /lib/SRC/AR/arImageProc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arImageProc.c -------------------------------------------------------------------------------- /lib/SRC/AR/arLabeling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arLabeling.c -------------------------------------------------------------------------------- /lib/SRC/AR/arLabelingSub/arLabelingPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arLabelingSub/arLabelingPrivate.h -------------------------------------------------------------------------------- /lib/SRC/AR/arLabelingSub/arLabelingSub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arLabelingSub/arLabelingSub.h -------------------------------------------------------------------------------- /lib/SRC/AR/arLabelingSub/arLabelingSubDBIC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arLabelingSub/arLabelingSubDBIC.c -------------------------------------------------------------------------------- /lib/SRC/AR/arLabelingSub/arLabelingSubDBRC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arLabelingSub/arLabelingSubDBRC.c -------------------------------------------------------------------------------- /lib/SRC/AR/arLabelingSub/arLabelingSubDBZ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arLabelingSub/arLabelingSubDBZ.c -------------------------------------------------------------------------------- /lib/SRC/AR/arLabelingSub/arLabelingSubDWIC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arLabelingSub/arLabelingSubDWIC.c -------------------------------------------------------------------------------- /lib/SRC/AR/arLabelingSub/arLabelingSubDWRC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arLabelingSub/arLabelingSubDWRC.c -------------------------------------------------------------------------------- /lib/SRC/AR/arLabelingSub/arLabelingSubDWZ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arLabelingSub/arLabelingSubDWZ.c -------------------------------------------------------------------------------- /lib/SRC/AR/arLabelingSub/arLabelingSubEBIC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arLabelingSub/arLabelingSubEBIC.c -------------------------------------------------------------------------------- /lib/SRC/AR/arLabelingSub/arLabelingSubEBRC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arLabelingSub/arLabelingSubEBRC.c -------------------------------------------------------------------------------- /lib/SRC/AR/arLabelingSub/arLabelingSubEBZ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arLabelingSub/arLabelingSubEBZ.c -------------------------------------------------------------------------------- /lib/SRC/AR/arLabelingSub/arLabelingSubEWIC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arLabelingSub/arLabelingSubEWIC.c -------------------------------------------------------------------------------- /lib/SRC/AR/arLabelingSub/arLabelingSubEWRC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arLabelingSub/arLabelingSubEWRC.c -------------------------------------------------------------------------------- /lib/SRC/AR/arLabelingSub/arLabelingSubEWZ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arLabelingSub/arLabelingSubEWZ.c -------------------------------------------------------------------------------- /lib/SRC/AR/arPattAttach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arPattAttach.c -------------------------------------------------------------------------------- /lib/SRC/AR/arPattCreateHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arPattCreateHandle.c -------------------------------------------------------------------------------- /lib/SRC/AR/arPattGetID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arPattGetID.c -------------------------------------------------------------------------------- /lib/SRC/AR/arPattLoad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arPattLoad.c -------------------------------------------------------------------------------- /lib/SRC/AR/arPattSave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arPattSave.c -------------------------------------------------------------------------------- /lib/SRC/AR/arUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/arUtil.c -------------------------------------------------------------------------------- /lib/SRC/AR/mAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/mAlloc.c -------------------------------------------------------------------------------- /lib/SRC/AR/mAllocDup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/mAllocDup.c -------------------------------------------------------------------------------- /lib/SRC/AR/mAllocInv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/mAllocInv.c -------------------------------------------------------------------------------- /lib/SRC/AR/mAllocMul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/mAllocMul.c -------------------------------------------------------------------------------- /lib/SRC/AR/mAllocTrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/mAllocTrans.c -------------------------------------------------------------------------------- /lib/SRC/AR/mAllocUnit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/mAllocUnit.c -------------------------------------------------------------------------------- /lib/SRC/AR/mDet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/mDet.c -------------------------------------------------------------------------------- /lib/SRC/AR/mDisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/mDisp.c -------------------------------------------------------------------------------- /lib/SRC/AR/mDup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/mDup.c -------------------------------------------------------------------------------- /lib/SRC/AR/mFree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/mFree.c -------------------------------------------------------------------------------- /lib/SRC/AR/mInv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/mInv.c -------------------------------------------------------------------------------- /lib/SRC/AR/mMul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/mMul.c -------------------------------------------------------------------------------- /lib/SRC/AR/mPCA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/mPCA.c -------------------------------------------------------------------------------- /lib/SRC/AR/mSelfInv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/mSelfInv.c -------------------------------------------------------------------------------- /lib/SRC/AR/mTrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/mTrans.c -------------------------------------------------------------------------------- /lib/SRC/AR/mUnit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/mUnit.c -------------------------------------------------------------------------------- /lib/SRC/AR/paramChangeSize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/paramChangeSize.c -------------------------------------------------------------------------------- /lib/SRC/AR/paramClear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/paramClear.c -------------------------------------------------------------------------------- /lib/SRC/AR/paramDecomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/paramDecomp.c -------------------------------------------------------------------------------- /lib/SRC/AR/paramDisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/paramDisp.c -------------------------------------------------------------------------------- /lib/SRC/AR/paramDistortion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/paramDistortion.c -------------------------------------------------------------------------------- /lib/SRC/AR/paramFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/paramFile.c -------------------------------------------------------------------------------- /lib/SRC/AR/paramGL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/paramGL.c -------------------------------------------------------------------------------- /lib/SRC/AR/paramGetPerspective.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/paramGetPerspective.c -------------------------------------------------------------------------------- /lib/SRC/AR/paramLT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/paramLT.c -------------------------------------------------------------------------------- /lib/SRC/AR/vAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/vAlloc.c -------------------------------------------------------------------------------- /lib/SRC/AR/vDisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/vDisp.c -------------------------------------------------------------------------------- /lib/SRC/AR/vFree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/vFree.c -------------------------------------------------------------------------------- /lib/SRC/AR/vHouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/vHouse.c -------------------------------------------------------------------------------- /lib/SRC/AR/vInnerP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/vInnerP.c -------------------------------------------------------------------------------- /lib/SRC/AR/vTridiag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR/vTridiag.c -------------------------------------------------------------------------------- /lib/SRC/AR2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR2/Makefile.in -------------------------------------------------------------------------------- /lib/SRC/AR2/coord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR2/coord.c -------------------------------------------------------------------------------- /lib/SRC/AR2/featureMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR2/featureMap.c -------------------------------------------------------------------------------- /lib/SRC/AR2/featureSet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR2/featureSet.c -------------------------------------------------------------------------------- /lib/SRC/AR2/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR2/handle.c -------------------------------------------------------------------------------- /lib/SRC/AR2/imageSet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR2/imageSet.c -------------------------------------------------------------------------------- /lib/SRC/AR2/jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR2/jpeg.c -------------------------------------------------------------------------------- /lib/SRC/AR2/marker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR2/marker.c -------------------------------------------------------------------------------- /lib/SRC/AR2/matching.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR2/matching.c -------------------------------------------------------------------------------- /lib/SRC/AR2/matching2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR2/matching2.c -------------------------------------------------------------------------------- /lib/SRC/AR2/searchPoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR2/searchPoint.c -------------------------------------------------------------------------------- /lib/SRC/AR2/selectTemplate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR2/selectTemplate.c -------------------------------------------------------------------------------- /lib/SRC/AR2/surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR2/surface.c -------------------------------------------------------------------------------- /lib/SRC/AR2/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR2/template.c -------------------------------------------------------------------------------- /lib/SRC/AR2/tracking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR2/tracking.c -------------------------------------------------------------------------------- /lib/SRC/AR2/tracking2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR2/tracking2d.c -------------------------------------------------------------------------------- /lib/SRC/AR2/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/AR2/util.c -------------------------------------------------------------------------------- /lib/SRC/ARICP/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARICP/Makefile.in -------------------------------------------------------------------------------- /lib/SRC/ARICP/icpCalibStereo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARICP/icpCalibStereo.c -------------------------------------------------------------------------------- /lib/SRC/ARICP/icpCore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARICP/icpCore.c -------------------------------------------------------------------------------- /lib/SRC/ARICP/icpHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARICP/icpHandle.c -------------------------------------------------------------------------------- /lib/SRC/ARICP/icpPoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARICP/icpPoint.c -------------------------------------------------------------------------------- /lib/SRC/ARICP/icpPointRobust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARICP/icpPointRobust.c -------------------------------------------------------------------------------- /lib/SRC/ARICP/icpStereoHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARICP/icpStereoHandle.c -------------------------------------------------------------------------------- /lib/SRC/ARICP/icpStereoPoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARICP/icpStereoPoint.c -------------------------------------------------------------------------------- /lib/SRC/ARICP/icpStereoPointRobust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARICP/icpStereoPointRobust.c -------------------------------------------------------------------------------- /lib/SRC/ARICP/icpUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARICP/icpUtil.c -------------------------------------------------------------------------------- /lib/SRC/ARMulti/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARMulti/Makefile.in -------------------------------------------------------------------------------- /lib/SRC/ARMulti/arMultiFreeConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARMulti/arMultiFreeConfig.c -------------------------------------------------------------------------------- /lib/SRC/ARMulti/arMultiGetTransMat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARMulti/arMultiGetTransMat.c -------------------------------------------------------------------------------- /lib/SRC/ARMulti/arMultiGetTransMatStereo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARMulti/arMultiGetTransMatStereo.c -------------------------------------------------------------------------------- /lib/SRC/ARMulti/arMultiReadConfigFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARMulti/arMultiReadConfigFile.c -------------------------------------------------------------------------------- /lib/SRC/ARUtil/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARUtil/Makefile.in -------------------------------------------------------------------------------- /lib/SRC/ARUtil/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARUtil/crypt.c -------------------------------------------------------------------------------- /lib/SRC/ARUtil/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARUtil/crypt.h -------------------------------------------------------------------------------- /lib/SRC/ARUtil/file_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARUtil/file_utils.c -------------------------------------------------------------------------------- /lib/SRC/ARUtil/ftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARUtil/ftw.h -------------------------------------------------------------------------------- /lib/SRC/ARUtil/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARUtil/ioapi.c -------------------------------------------------------------------------------- /lib/SRC/ARUtil/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARUtil/ioapi.h -------------------------------------------------------------------------------- /lib/SRC/ARUtil/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARUtil/log.c -------------------------------------------------------------------------------- /lib/SRC/ARUtil/nftw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARUtil/nftw.c -------------------------------------------------------------------------------- /lib/SRC/ARUtil/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARUtil/profile.c -------------------------------------------------------------------------------- /lib/SRC/ARUtil/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARUtil/system.c -------------------------------------------------------------------------------- /lib/SRC/ARUtil/thread_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARUtil/thread_sub.c -------------------------------------------------------------------------------- /lib/SRC/ARUtil/thread_sub_winrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARUtil/thread_sub_winrt.cpp -------------------------------------------------------------------------------- /lib/SRC/ARUtil/thread_sub_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARUtil/thread_sub_winrt.h -------------------------------------------------------------------------------- /lib/SRC/ARUtil/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARUtil/time.c -------------------------------------------------------------------------------- /lib/SRC/ARUtil/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARUtil/unzip.c -------------------------------------------------------------------------------- /lib/SRC/ARUtil/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARUtil/unzip.h -------------------------------------------------------------------------------- /lib/SRC/ARUtil/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARUtil/zip.c -------------------------------------------------------------------------------- /lib/SRC/ARUtil/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARUtil/zip.h -------------------------------------------------------------------------------- /lib/SRC/ARWrapper/ARController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARWrapper/ARController.cpp -------------------------------------------------------------------------------- /lib/SRC/ARWrapper/ARMarker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARWrapper/ARMarker.cpp -------------------------------------------------------------------------------- /lib/SRC/ARWrapper/ARMarkerMulti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARWrapper/ARMarkerMulti.cpp -------------------------------------------------------------------------------- /lib/SRC/ARWrapper/ARMarkerNFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARWrapper/ARMarkerNFT.cpp -------------------------------------------------------------------------------- /lib/SRC/ARWrapper/ARMarkerSquare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARWrapper/ARMarkerSquare.cpp -------------------------------------------------------------------------------- /lib/SRC/ARWrapper/ARPattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARWrapper/ARPattern.cpp -------------------------------------------------------------------------------- /lib/SRC/ARWrapper/ARToolKitWrapperExportedAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARWrapper/ARToolKitWrapperExportedAPI.cpp -------------------------------------------------------------------------------- /lib/SRC/ARWrapper/ARVideoSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARWrapper/ARVideoSource.cpp -------------------------------------------------------------------------------- /lib/SRC/ARWrapper/AndroidFeatures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARWrapper/AndroidFeatures.cpp -------------------------------------------------------------------------------- /lib/SRC/ARWrapper/ColorConversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARWrapper/ColorConversion.cpp -------------------------------------------------------------------------------- /lib/SRC/ARWrapper/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARWrapper/Makefile.in -------------------------------------------------------------------------------- /lib/SRC/ARWrapper/trackingSub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARWrapper/trackingSub.c -------------------------------------------------------------------------------- /lib/SRC/ARWrapper/trackingSub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/ARWrapper/trackingSub.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/AccelerateSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/AccelerateSupport -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/Cholesky -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/CholmodSupport -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/Core -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/Dense -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/Eigen -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/Eigenvalues -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/Geometry -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/Householder -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/Jacobi -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/KLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/KLUSupport -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/LU -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/MetisSupport -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/OrderingMethods -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/PardisoSupport -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/QR -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/SPQRSupport -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/SVD -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/Sparse -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/SparseCholesky -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/SparseCore -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/SparseLU -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/SparseQR -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/StdDeque -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/StdList -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/StdVector -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Cholesky/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Cholesky/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Cholesky/LLT_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Cholesky/LLT_LAPACKE.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/CholmodSupport/CholmodSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/CholmodSupport/CholmodSupport.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/CholmodSupport/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/CholmodSupport/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/ArithmeticSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/ArithmeticSequence.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/AssignEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/AssignEvaluator.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/BooleanRedux.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/CommaInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/CommaInitializer.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/ConditionEstimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/ConditionEstimator.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/CoreEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/CoreEvaluators.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/CoreIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/CoreIterators.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/CwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/CwiseBinaryOp.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/CwiseNullaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/CwiseNullaryOp.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/CwiseTernaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/CwiseTernaryOp.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/CwiseUnaryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/CwiseUnaryView.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/DenseCoeffsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/DenseCoeffsBase.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/DiagonalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/DiagonalMatrix.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/DiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/DiagonalProduct.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/ForceAlignedAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/ForceAlignedAccess.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/GeneralProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/GeneralProduct.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/GenericPacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/GenericPacketMath.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/GlobalFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/GlobalFunctions.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/IndexedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/IndexedView.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/MathFunctions.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/MathFunctionsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/MathFunctionsImpl.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/PartialReduxEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/PartialReduxEvaluator.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/PermutationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/PermutationMatrix.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/PlainObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/PlainObjectBase.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/ProductEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/ProductEvaluators.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Reshaped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Reshaped.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/ReturnByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/ReturnByValue.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/SelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/SelfAdjointView.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/SelfCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/SelfCwiseBinaryOp.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/SolveTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/SolveTriangular.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/StlIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/StlIterators.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Transpositions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Transpositions.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/TriangularMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/TriangularMatrix.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AVX/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AVX/Complex.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AVX/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AVX/MathFunctions.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AVX/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AVX/PacketMath.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AVX/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AVX/TypeCasting.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AVX512/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AVX512/Complex.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AVX512/GemmKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AVX512/GemmKernel.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AVX512/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AVX512/MathFunctions.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AVX512/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AVX512/PacketMath.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AVX512/TrsmKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AVX512/TrsmKernel.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AVX512/TrsmUnrolls.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AVX512/TrsmUnrolls.inc -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AVX512/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AVX512/TypeCasting.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AltiVec/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AltiVec/Complex.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AltiVec/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AltiVec/MathFunctions.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AltiVec/MatrixProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AltiVec/MatrixProduct.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AltiVec/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/AltiVec/PacketMath.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/Default/BFloat16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/Default/BFloat16.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/Default/ConjHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/Default/ConjHelper.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/Default/Half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/Default/Half.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/Default/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/Default/Settings.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/Default/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/Default/TypeCasting.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/GPU/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/GPU/Complex.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/GPU/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/GPU/MathFunctions.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/GPU/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/GPU/PacketMath.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/GPU/Tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/GPU/Tuple.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/GPU/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/GPU/TypeCasting.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/HIP/hcc/math_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/HIP/hcc/math_constants.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/MSA/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/MSA/Complex.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/MSA/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/MSA/MathFunctions.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/MSA/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/MSA/PacketMath.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/NEON/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/NEON/Complex.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/NEON/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/NEON/MathFunctions.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/NEON/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/NEON/PacketMath.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/NEON/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/NEON/TypeCasting.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/NEON/UnaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/NEON/UnaryFunctors.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SSE/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SSE/Complex.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SSE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SSE/MathFunctions.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SSE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SSE/PacketMath.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SSE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SSE/TypeCasting.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SVE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SVE/MathFunctions.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SVE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SVE/PacketMath.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SVE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SVE/TypeCasting.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SYCL/InteropHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SYCL/InteropHeaders.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SYCL/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SYCL/MathFunctions.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SYCL/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SYCL/PacketMath.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SYCL/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/SYCL/TypeCasting.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/ZVector/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/ZVector/Complex.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/ZVector/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/ZVector/MathFunctions.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/ZVector/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/arch/ZVector/PacketMath.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/functors/AssignmentFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/functors/AssignmentFunctors.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/functors/BinaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/functors/BinaryFunctors.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/functors/NullaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/functors/NullaryFunctors.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/functors/StlFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/functors/StlFunctors.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/functors/TernaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/functors/TernaryFunctors.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/functors/UnaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/functors/UnaryFunctors.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/products/GeneralMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/products/GeneralMatrixMatrix.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/products/GeneralMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/products/GeneralMatrixVector.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/products/Parallelizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/products/Parallelizer.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/products/SelfadjointProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/products/SelfadjointProduct.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/BlasUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/BlasUtil.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/ConfigureVectorization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/ConfigureVectorization.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/Constants.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/DisableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/DisableStupidWarnings.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/ForwardDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/ForwardDeclarations.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/IndexedViewHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/IndexedViewHelper.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/IntegralConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/IntegralConstant.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/MKL_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/MKL_support.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/NonMPL2.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/ReenableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/ReenableStupidWarnings.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/ReshapedHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/ReshapedHelper.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/Serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/Serializer.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/StaticAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/StaticAssert.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/SymbolicIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/SymbolicIndex.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/XprHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Core/util/XprHelper.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/ComplexEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/ComplexEigenSolver.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/ComplexSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/ComplexSchur.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/EigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/EigenSolver.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/RealQZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/RealQZ.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/RealSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/RealSchur.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/Tridiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Eigenvalues/Tridiagonalization.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/EulerAngles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/EulerAngles.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/Homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/Homogeneous.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/OrthoMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/OrthoMethods.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/ParametrizedLine.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/Quaternion.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/RotationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/RotationBase.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/Transform.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/Translation.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/arch/Geometry_SIMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Geometry/arch/Geometry_SIMD.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Householder/BlockHouseholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Householder/BlockHouseholder.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Householder/Householder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Householder/Householder.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Householder/HouseholderSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Householder/HouseholderSequence.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Householder/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Householder/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Jacobi/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Jacobi/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/KLUSupport/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/KLUSupport/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/KLUSupport/KLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/KLUSupport/KLUSupport.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/LU/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/LU/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/LU/PartialPivLU_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/LU/PartialPivLU_LAPACKE.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/LU/arch/InverseSize4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/LU/arch/InverseSize4.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/MetisSupport/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/MetisSupport/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/MetisSupport/MetisSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/MetisSupport/MetisSupport.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/OrderingMethods/Amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/OrderingMethods/Amd.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/OrderingMethods/Eigen_Colamd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/OrderingMethods/Eigen_Colamd.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/OrderingMethods/Ordering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/OrderingMethods/Ordering.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/PaStiXSupport/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/PaStiXSupport/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/PaStiXSupport/PaStiXSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/PaStiXSupport/PaStiXSupport.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/PardisoSupport/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/PardisoSupport/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/PardisoSupport/PardisoSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/PardisoSupport/PardisoSupport.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/QR/ColPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/QR/ColPivHouseholderQR.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/QR/CompleteOrthogonalDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/QR/CompleteOrthogonalDecomposition.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/QR/FullPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/QR/FullPivHouseholderQR.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/QR/HouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/QR/HouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/QR/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/QR/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SPQRSupport/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SPQRSupport/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SVD/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SVD/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SVD/JacobiSVD_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SVD/JacobiSVD_LAPACKE.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SVD/UpperBidiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SVD/UpperBidiagonalization.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCholesky/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCholesky/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCholesky/SimplicialCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCholesky/SimplicialCholesky.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/AmbiVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/AmbiVector.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/CompressedStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/CompressedStorage.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseAssign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseAssign.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseBlock.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseColEtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseColEtree.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseCompressedBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseCompressedBase.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseCwiseBinaryOp.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseCwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseCwiseUnaryOp.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseDenseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseDenseProduct.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseDiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseDiagonalProduct.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseDot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseDot.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseFuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseFuzzy.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseMap.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseMatrix.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseMatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseMatrixBase.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparsePermutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparsePermutation.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseProduct.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseRedux.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseRef.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseSelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseSelfAdjointView.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseSolverBase.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseTranspose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseTranspose.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseTriangularView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseTriangularView.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseUtil.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseVector.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/SparseView.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/TriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseCore/TriangularSolver.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLUImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLUImpl.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_Memory.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_Structs.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_Utils.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_column_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_column_bmod.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_column_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_column_dfs.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_gemm_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_gemm_kernel.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_kernel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_kernel_bmod.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_panel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_panel_bmod.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_panel_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_panel_dfs.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_pivotL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_pivotL.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_pruneL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_pruneL.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseLU/SparseLU_relax_snode.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseQR/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseQR/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SparseQR/SparseQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SparseQR/SparseQR.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/StlSupport/StdDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/StlSupport/StdDeque.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/StlSupport/StdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/StlSupport/StdList.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/StlSupport/StdVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/StlSupport/StdVector.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/StlSupport/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/StlSupport/details.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SuperLUSupport/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SuperLUSupport/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/SuperLUSupport/SuperLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/SuperLUSupport/SuperLUSupport.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/UmfPackSupport/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/UmfPackSupport/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/UmfPackSupport/UmfPackSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/UmfPackSupport/UmfPackSupport.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/misc/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/misc/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/misc/RealSvd2x2.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/misc/lapacke.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/misc/lapacke_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/misc/lapacke_helpers.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/misc/lapacke_mangling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/misc/lapacke_mangling.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/plugins/ArrayCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/plugins/ArrayCwiseBinaryOps.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/plugins/ArrayCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/plugins/ArrayCwiseUnaryOps.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/plugins/BlockMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/plugins/BlockMethods.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/plugins/CommonCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/plugins/CommonCwiseBinaryOps.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/plugins/CommonCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/plugins/CommonCwiseUnaryOps.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/plugins/IndexedViewMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/plugins/IndexedViewMethods.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/plugins/InternalHeaderCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/plugins/InternalHeaderCheck.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/plugins/MatrixCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/plugins/MatrixCwiseBinaryOps.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/plugins/MatrixCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/plugins/MatrixCwiseUnaryOps.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/Eigen/src/plugins/ReshapedMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/Eigen/src/plugins/ReshapedMethods.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/detectors/DoG_scale_invariant_detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/detectors/DoG_scale_invariant_detector.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/detectors/DoG_scale_invariant_detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/detectors/DoG_scale_invariant_detector.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/detectors/gaussian_scale_space_pyramid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/detectors/gaussian_scale_space_pyramid.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/detectors/gaussian_scale_space_pyramid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/detectors/gaussian_scale_space_pyramid.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/detectors/gradients.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/detectors/gradients.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/detectors/gradients.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/detectors/gradients.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/detectors/harris-inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/detectors/harris-inline.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/detectors/harris.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/detectors/harris.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/detectors/harris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/detectors/harris.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/detectors/interpolate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/detectors/interpolate.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/detectors/orientation_assignment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/detectors/orientation_assignment.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/detectors/orientation_assignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/detectors/orientation_assignment.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/detectors/pyramid-inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/detectors/pyramid-inline.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/detectors/pyramid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/detectors/pyramid.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/detectors/pyramid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/detectors/pyramid.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/facade/visual_database_facade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/facade/visual_database_facade.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/facade/visual_database_facade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/facade/visual_database_facade.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/framework/date_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/framework/date_time.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/framework/date_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/framework/date_time.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/framework/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/framework/error.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/framework/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/framework/exception.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/framework/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/framework/image.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/framework/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/framework/image.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/framework/image_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/framework/image_utils.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/framework/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/framework/logger.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/framework/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/framework/logger.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/framework/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/framework/timers.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/framework/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/framework/timers.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/homography_estimation/homography_solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/homography_estimation/homography_solver.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/homography_estimation/robust_homography.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/homography_estimation/robust_homography.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/matchers/binary_hierarchical_clustering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/matchers/binary_hierarchical_clustering.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/matchers/feature_matcher-inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/matchers/feature_matcher-inline.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/matchers/feature_matcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/matchers/feature_matcher.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/matchers/feature_point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/matchers/feature_point.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/matchers/feature_store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/matchers/feature_store.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/matchers/feature_store_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/matchers/feature_store_io.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/matchers/feature_store_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/matchers/feature_store_io.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/matchers/freak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/matchers/freak.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/matchers/freak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/matchers/freak.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/matchers/freak84-inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/matchers/freak84-inline.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/matchers/hough_similarity_voting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/matchers/hough_similarity_voting.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/matchers/hough_similarity_voting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/matchers/hough_similarity_voting.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/matchers/keyframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/matchers/keyframe.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/matchers/kmedoids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/matchers/kmedoids.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/matchers/matcher_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/matchers/matcher_types.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/matchers/visual_database-inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/matchers/visual_database-inline.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/matchers/visual_database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/matchers/visual_database.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/matchers/visual_database_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/matchers/visual_database_io.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/matchers/visual_database_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/matchers/visual_database_io.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/matchers/visual_database_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/matchers/visual_database_types.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/math/cholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/math/cholesky.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/math/cholesky_linear_solvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/math/cholesky_linear_solvers.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/math/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/math/geometry.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/math/hamming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/math/hamming.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/math/homography.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/math/homography.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/math/indexing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/math/indexing.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/math/linear_algebra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/math/linear_algebra.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/math/linear_solvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/math/linear_solvers.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/math/math_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/math/math_io.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/math/math_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/math/math_io.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/math/math_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/math/math_utils.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/math/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/math/matrix.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/math/polynomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/math/polynomial.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/math/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/math/quaternion.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/math/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/math/rand.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/math/robustifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/math/robustifiers.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/CMakeLists.txt -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/AdolcForward: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/AdolcForward -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/AlignedVector3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/AlignedVector3 -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/ArpackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/ArpackSupport -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/AutoDiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/AutoDiff -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/BVH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/BVH -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CMakeLists.txt -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CXX11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CXX11/CMakeLists.txt -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CXX11/Tensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CXX11/Tensor -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CXX11/TensorSymmetry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CXX11/TensorSymmetry -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CXX11/ThreadPool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CXX11/ThreadPool -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CXX11/src/Tensor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CXX11/src/Tensor/README.md -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CXX11/src/Tensor/Tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CXX11/src/Tensor/Tensor.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CXX11/src/util/CXX11Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/CXX11/src/util/CXX11Meta.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/EulerAngles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/EulerAngles -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/FFT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/FFT -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/IterativeSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/IterativeSolvers -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/KroneckerProduct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/KroneckerProduct -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/LevenbergMarquardt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/LevenbergMarquardt -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/MPRealSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/MPRealSupport -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/MatrixFunctions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/MatrixFunctions -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/MoreVectorization: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/MoreVectorization -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/NNLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/NNLS -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/NonLinearOptimization: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/NonLinearOptimization -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/NumericalDiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/NumericalDiff -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/OpenGLSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/OpenGLSupport -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/Polynomials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/Polynomials -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/Skyline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/Skyline -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/SparseExtra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/SparseExtra -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/SpecialFunctions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/SpecialFunctions -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/Splines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/Splines -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/BVH/BVAlgorithms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/BVH/BVAlgorithms.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/BVH/KdBVH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/BVH/KdBVH.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/FFT/ei_fftw_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/FFT/ei_fftw_impl.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/FFT/ei_imklfft_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/FFT/ei_imklfft_impl.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/FFT/ei_kissfft_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/FFT/ei_kissfft_impl.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/FFT/ei_pocketfft_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/FFT/ei_pocketfft_impl.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/IterativeSolvers/GMRES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/IterativeSolvers/GMRES.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/IterativeSolvers/IDRS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/IterativeSolvers/IDRS.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/Polynomials/Companion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/Polynomials/Companion.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/Skyline/SkylineMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/Skyline/SkylineMatrix.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/Skyline/SkylineProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/Skyline/SkylineProduct.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/Skyline/SkylineStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/Skyline/SkylineStorage.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/Skyline/SkylineUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/Skyline/SkylineUtil.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/SparseExtra/MarketIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/SparseExtra/MarketIO.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/Splines/Spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/Splines/Spline.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/Splines/SplineFitting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/Splines/SplineFitting.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/Splines/SplineFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/Eigen/src/Splines/SplineFwd.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/README.txt -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/bench/bench_svd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/bench/bench_svd.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/doc/CMakeLists.txt -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/doc/Overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/doc/Overview.dox -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/doc/SYCL.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/doc/SYCL.dox -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/doc/eigendoxy_layout.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/doc/eigendoxy_layout.xml.in -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/BVH_Example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/BVH_Example.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/CMakeLists.txt -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/EulerAngles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/EulerAngles.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/FFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/FFT.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/MatrixExponential.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/MatrixExponential.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/MatrixFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/MatrixFunction.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/MatrixLogarithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/MatrixLogarithm.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/MatrixPower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/MatrixPower.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/MatrixSine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/MatrixSine.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/MatrixSinh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/MatrixSinh.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/MatrixSquareRoot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/MatrixSquareRoot.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/PolynomialSolver1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/PolynomialSolver1.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/PolynomialUtils1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/PolynomialUtils1.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/SYCL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/SYCL/CMakeLists.txt -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/SYCL/CwiseMul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/doc/examples/SYCL/CwiseMul.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/doc/snippets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/doc/snippets/CMakeLists.txt -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/BVH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/BVH.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/CMakeLists.txt -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/EulerAngles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/EulerAngles.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/FFT.cpp: -------------------------------------------------------------------------------- 1 | #define EIGEN_FFT_DEFAULT 1 2 | #include "fft_test_shared.h" 3 | -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/FFTW.cpp: -------------------------------------------------------------------------------- 1 | #define EIGEN_FFTW_DEFAULT 1 2 | #include "fft_test_shared.h" 3 | -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/NNLS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/NNLS.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/NonLinearOptimization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/NonLinearOptimization.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/NumericalDiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/NumericalDiff.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/alignedvector3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/alignedvector3.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/autodiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/autodiff.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/autodiff_scalar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/autodiff_scalar.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/bessel_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/bessel_functions.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/bicgstabl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/bicgstabl.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_eventcount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_eventcount.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_maxsizevector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_maxsizevector.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_meta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_meta.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_runqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_runqueue.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_argmax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_argmax.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_argmax_gpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_argmax_gpu.cu -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_argmax_sycl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_argmax_sycl.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_assign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_assign.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_block_access.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_block_access.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_block_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_block_io.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_casts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_casts.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_chipping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_chipping.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_const.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_const.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_custom_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_custom_op.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_device.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_device.cu -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_dimension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_dimension.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_empty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_empty.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_executor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_executor.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_expr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_expr.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_fft.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_generator.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_gpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_gpu.cu -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_ifft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_ifft.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_inflation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_inflation.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_intdiv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_intdiv.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_io.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_lvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_lvalue.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_map.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_math.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_math_sycl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_math_sycl.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_morphing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_morphing.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_move.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_move.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_padding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_padding.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_patch.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_random.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_random_gpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_random_gpu.cu -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_reduction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_reduction.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_ref.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_reverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_reverse.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_roundings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_roundings.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_scan.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_scan_gpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_scan_gpu.cu -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_scan_sycl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_scan_sycl.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_shuffling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_shuffling.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_simple.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_striding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_striding.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_sugar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_sugar.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_sycl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_sycl.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_symmetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_symmetry.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_trace.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_uint128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/cxx11_tensor_uint128.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/dgmres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/dgmres.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/fft_test_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/fft_test_shared.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/forward_adolc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/forward_adolc.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/gmres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/gmres.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/idrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/idrs.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/idrstabl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/idrstabl.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/kronecker_product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/kronecker_product.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/levenberg_marquardt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/levenberg_marquardt.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/matrix_exponential.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/matrix_exponential.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/matrix_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/matrix_function.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/matrix_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/matrix_functions.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/matrix_power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/matrix_power.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/matrix_square_root.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/matrix_square_root.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/minres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/minres.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/mklfft.cpp: -------------------------------------------------------------------------------- 1 | #define EIGEN_MKL_DEFAULT 1 2 | #include "fft_test_shared.h" 3 | -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/mpreal_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/mpreal_support.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/openglsupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/openglsupport.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/pocketfft.cpp: -------------------------------------------------------------------------------- 1 | #define EIGEN_POCKETFFT_DEFAULT 1 2 | #include "fft_test_shared.h" 3 | -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/polynomialsolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/polynomialsolver.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/polynomialutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/polynomialutils.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/sparse_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/sparse_extra.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/special_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/special_functions.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/special_packetmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/special_packetmath.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/unsupported/test/splines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/unsupported/test/splines.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/utils/feature_drawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/utils/feature_drawing.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/utils/partial_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/utils/partial_sort.h -------------------------------------------------------------------------------- /lib/SRC/KPM/FreakMatcher/utils/point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/FreakMatcher/utils/point.h -------------------------------------------------------------------------------- /lib/SRC/KPM/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/Makefile.in -------------------------------------------------------------------------------- /lib/SRC/KPM/kpmFopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/kpmFopen.c -------------------------------------------------------------------------------- /lib/SRC/KPM/kpmFopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/kpmFopen.h -------------------------------------------------------------------------------- /lib/SRC/KPM/kpmHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/kpmHandle.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/kpmMatching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/kpmMatching.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/kpmPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/kpmPrivate.h -------------------------------------------------------------------------------- /lib/SRC/KPM/kpmRefDataSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/kpmRefDataSet.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/kpmResult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/kpmResult.cpp -------------------------------------------------------------------------------- /lib/SRC/KPM/kpmUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/KPM/kpmUtil.cpp -------------------------------------------------------------------------------- /lib/SRC/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/Makefile.in -------------------------------------------------------------------------------- /lib/SRC/Video/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/Video/video.c -------------------------------------------------------------------------------- /lib/SRC/WebARKit/WebARKitLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webarkit/WebARKitLib/HEAD/lib/SRC/WebARKit/WebARKitLog.cpp --------------------------------------------------------------------------------