├── .gitignore ├── .gradle └── 3.3 │ ├── taskArtifacts │ ├── fileHashes.bin │ ├── fileSnapshots.bin │ ├── taskArtifacts.bin │ └── taskArtifacts.lock │ └── tasks │ ├── _basic_compileDebugJavaWithJavac │ ├── localClassSetAnalysis │ │ ├── localClassSetAnalysis.bin │ │ └── localClassSetAnalysis.lock │ └── localJarClasspathSnapshot │ │ ├── localJarClasspathSnapshot.bin │ │ └── localJarClasspathSnapshot.lock │ └── _texture-view_compileDebugJavaWithJavac │ ├── localClassSetAnalysis │ ├── localClassSetAnalysis.bin │ └── localClassSetAnalysis.lock │ └── localJarClasspathSnapshot │ ├── localJarClasspathSnapshot.bin │ └── localJarClasspathSnapshot.lock ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── libraries │ ├── support_annotations_25_3_1.xml │ └── support_compat_25_3_1.xml ├── markdown-navigator │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── workspace.xml ├── LICENSE ├── README.md ├── camera.iml ├── device-2017-10-23-185701.png ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties ├── settings.gradle └── texture-view ├── .externalNativeBuild └── cmake │ ├── debug │ ├── arm64-v8a │ │ ├── .ninja_deps │ │ ├── .ninja_log │ │ ├── CMakeCache.txt │ │ ├── CMakeFiles │ │ │ ├── 3.6.0-rc2 │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ └── CMakeSystem.cmake │ │ │ ├── CMakeOutput.log │ │ │ ├── TargetDirectories.txt │ │ │ ├── cmake.check_cache │ │ │ ├── feature_tests.bin │ │ │ ├── feature_tests.c │ │ │ └── feature_tests.cxx │ │ ├── android_gradle_build.json │ │ ├── build.ninja │ │ ├── cmake_build_command.txt │ │ ├── cmake_build_output.txt │ │ ├── cmake_install.cmake │ │ └── rules.ninja │ └── armeabi-v7a │ │ ├── CMakeCache.txt │ │ ├── CMakeFiles │ │ ├── 3.6.0-rc2 │ │ │ ├── CMakeCCompiler.cmake │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ └── CMakeSystem.cmake │ │ ├── CMakeOutput.log │ │ ├── TargetDirectories.txt │ │ ├── cmake.check_cache │ │ ├── feature_tests.bin │ │ ├── feature_tests.c │ │ └── feature_tests.cxx │ │ ├── android_gradle_build.json │ │ ├── build.ninja │ │ ├── cmake_build_command.txt │ │ ├── cmake_build_output.txt │ │ ├── cmake_install.cmake │ │ └── rules.ninja │ └── release │ ├── arm64-v8a │ ├── CMakeCache.txt │ ├── CMakeFiles │ │ ├── 3.6.0-rc2 │ │ │ ├── CMakeCCompiler.cmake │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ └── CMakeSystem.cmake │ │ ├── CMakeOutput.log │ │ ├── TargetDirectories.txt │ │ ├── cmake.check_cache │ │ ├── feature_tests.bin │ │ ├── feature_tests.c │ │ └── feature_tests.cxx │ ├── android_gradle_build.json │ ├── build.ninja │ ├── cmake_build_command.txt │ ├── cmake_build_output.txt │ ├── cmake_install.cmake │ └── rules.ninja │ └── armeabi-v7a │ ├── CMakeCache.txt │ ├── CMakeFiles │ ├── 3.6.0-rc2 │ │ ├── CMakeCCompiler.cmake │ │ ├── CMakeCXXCompiler.cmake │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ └── CMakeSystem.cmake │ ├── CMakeOutput.log │ ├── TargetDirectories.txt │ ├── cmake.check_cache │ ├── feature_tests.bin │ ├── feature_tests.c │ └── feature_tests.cxx │ ├── android_gradle_build.json │ ├── build.ninja │ ├── cmake_build_command.txt │ ├── cmake_build_output.txt │ ├── cmake_install.cmake │ └── rules.ninja ├── build.gradle ├── src └── main │ ├── AndroidManifest.xml │ ├── assets │ ├── squeeze_init_net.pb │ └── squeeze_predict_net.pb │ ├── cpp │ ├── CMakeLists.txt │ ├── Eigen │ │ ├── CMakeLists.txt │ │ ├── Cholesky │ │ ├── CholmodSupport │ │ ├── Core │ │ ├── Dense │ │ ├── Eigen │ │ ├── Eigenvalues │ │ ├── Geometry │ │ ├── Householder │ │ ├── IterativeLinearSolvers │ │ ├── Jacobi │ │ ├── LU │ │ ├── MetisSupport │ │ ├── OrderingMethods │ │ ├── PaStiXSupport │ │ ├── PardisoSupport │ │ ├── QR │ │ ├── QtAlignedMalloc │ │ ├── SPQRSupport │ │ ├── SVD │ │ ├── Sparse │ │ ├── SparseCholesky │ │ ├── SparseCore │ │ ├── SparseLU │ │ ├── SparseQR │ │ ├── StdDeque │ │ ├── StdList │ │ ├── StdVector │ │ ├── SuperLUSupport │ │ ├── UmfPackSupport │ │ └── src │ │ │ ├── Cholesky │ │ │ ├── LDLT.h │ │ │ ├── LLT.h │ │ │ └── LLT_LAPACKE.h │ │ │ ├── CholmodSupport │ │ │ └── CholmodSupport.h │ │ │ ├── Core │ │ │ ├── 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 │ │ │ ├── Inverse.h │ │ │ ├── Map.h │ │ │ ├── MapBase.h │ │ │ ├── MathFunctions.h │ │ │ ├── MathFunctionsImpl.h │ │ │ ├── Matrix.h │ │ │ ├── MatrixBase.h │ │ │ ├── NestByValue.h │ │ │ ├── NoAlias.h │ │ │ ├── NumTraits.h │ │ │ ├── PermutationMatrix.h │ │ │ ├── PlainObjectBase.h │ │ │ ├── Product.h │ │ │ ├── ProductEvaluators.h │ │ │ ├── Random.h │ │ │ ├── Redux.h │ │ │ ├── Ref.h │ │ │ ├── Replicate.h │ │ │ ├── ReturnByValue.h │ │ │ ├── Reverse.h │ │ │ ├── Select.h │ │ │ ├── SelfAdjointView.h │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ ├── Solve.h │ │ │ ├── SolveTriangular.h │ │ │ ├── SolverBase.h │ │ │ ├── StableNorm.h │ │ │ ├── Stride.h │ │ │ ├── Swap.h │ │ │ ├── Transpose.h │ │ │ ├── Transpositions.h │ │ │ ├── TriangularMatrix.h │ │ │ ├── VectorBlock.h │ │ │ ├── VectorwiseOp.h │ │ │ ├── Visitor.h │ │ │ ├── arch │ │ │ │ ├── AVX │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── AVX512 │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── AltiVec │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── CUDA │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── Half.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ ├── PacketMathHalf.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── Default │ │ │ │ │ └── Settings.h │ │ │ │ ├── NEON │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── SSE │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ └── ZVector │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ ├── functors │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ ├── BinaryFunctors.h │ │ │ │ ├── NullaryFunctors.h │ │ │ │ ├── StlFunctors.h │ │ │ │ ├── TernaryFunctors.h │ │ │ │ └── UnaryFunctors.h │ │ │ ├── products │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ ├── Parallelizer.h │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ └── TriangularSolverVector.h │ │ │ └── util │ │ │ │ ├── BlasUtil.h │ │ │ │ ├── Constants.h │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ ├── IndexedViewHelper.h │ │ │ │ ├── IntegralConstant.h │ │ │ │ ├── MKL_support.h │ │ │ │ ├── Macros.h │ │ │ │ ├── Memory.h │ │ │ │ ├── Meta.h │ │ │ │ ├── NonMPL2.h │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ ├── StaticAssert.h │ │ │ │ ├── SymbolicIndex.h │ │ │ │ └── XprHelper.h │ │ │ ├── Eigenvalues │ │ │ ├── ComplexEigenSolver.h │ │ │ ├── ComplexSchur.h │ │ │ ├── ComplexSchur_LAPACKE.h │ │ │ ├── EigenSolver.h │ │ │ ├── GeneralizedEigenSolver.h │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ ├── HessenbergDecomposition.h │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ ├── RealQZ.h │ │ │ ├── RealSchur.h │ │ │ ├── RealSchur_LAPACKE.h │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ │ └── Tridiagonalization.h │ │ │ ├── Geometry │ │ │ ├── AlignedBox.h │ │ │ ├── AngleAxis.h │ │ │ ├── EulerAngles.h │ │ │ ├── Homogeneous.h │ │ │ ├── Hyperplane.h │ │ │ ├── OrthoMethods.h │ │ │ ├── ParametrizedLine.h │ │ │ ├── Quaternion.h │ │ │ ├── Rotation2D.h │ │ │ ├── RotationBase.h │ │ │ ├── Scaling.h │ │ │ ├── Transform.h │ │ │ ├── Translation.h │ │ │ ├── Umeyama.h │ │ │ └── arch │ │ │ │ └── Geometry_SSE.h │ │ │ ├── Householder │ │ │ ├── BlockHouseholder.h │ │ │ ├── Householder.h │ │ │ └── HouseholderSequence.h │ │ │ ├── IterativeLinearSolvers │ │ │ ├── BasicPreconditioners.h │ │ │ ├── BiCGSTAB.h │ │ │ ├── ConjugateGradient.h │ │ │ ├── IncompleteCholesky.h │ │ │ ├── IncompleteLUT.h │ │ │ ├── IterativeSolverBase.h │ │ │ ├── LeastSquareConjugateGradient.h │ │ │ └── SolveWithGuess.h │ │ │ ├── Jacobi │ │ │ └── Jacobi.h │ │ │ ├── LU │ │ │ ├── Determinant.h │ │ │ ├── FullPivLU.h │ │ │ ├── InverseImpl.h │ │ │ ├── PartialPivLU.h │ │ │ ├── PartialPivLU_LAPACKE.h │ │ │ └── arch │ │ │ │ └── Inverse_SSE.h │ │ │ ├── MetisSupport │ │ │ └── MetisSupport.h │ │ │ ├── OrderingMethods │ │ │ ├── Amd.h │ │ │ ├── Eigen_Colamd.h │ │ │ └── Ordering.h │ │ │ ├── PaStiXSupport │ │ │ └── PaStiXSupport.h │ │ │ ├── PardisoSupport │ │ │ └── PardisoSupport.h │ │ │ ├── QR │ │ │ ├── ColPivHouseholderQR.h │ │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ ├── FullPivHouseholderQR.h │ │ │ ├── HouseholderQR.h │ │ │ └── HouseholderQR_LAPACKE.h │ │ │ ├── SPQRSupport │ │ │ └── SuiteSparseQRSupport.h │ │ │ ├── SVD │ │ │ ├── BDCSVD.h │ │ │ ├── JacobiSVD.h │ │ │ ├── JacobiSVD_LAPACKE.h │ │ │ ├── SVDBase.h │ │ │ └── UpperBidiagonalization.h │ │ │ ├── SparseCholesky │ │ │ ├── SimplicialCholesky.h │ │ │ └── SimplicialCholesky_impl.h │ │ │ ├── SparseCore │ │ │ ├── AmbiVector.h │ │ │ ├── CompressedStorage.h │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ ├── MappedSparseMatrix.h │ │ │ ├── SparseAssign.h │ │ │ ├── SparseBlock.h │ │ │ ├── SparseColEtree.h │ │ │ ├── SparseCompressedBase.h │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ ├── SparseDenseProduct.h │ │ │ ├── SparseDiagonalProduct.h │ │ │ ├── SparseDot.h │ │ │ ├── SparseFuzzy.h │ │ │ ├── SparseMap.h │ │ │ ├── SparseMatrix.h │ │ │ ├── SparseMatrixBase.h │ │ │ ├── SparsePermutation.h │ │ │ ├── SparseProduct.h │ │ │ ├── SparseRedux.h │ │ │ ├── SparseRef.h │ │ │ ├── SparseSelfAdjointView.h │ │ │ ├── SparseSolverBase.h │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ ├── SparseTranspose.h │ │ │ ├── SparseTriangularView.h │ │ │ ├── SparseUtil.h │ │ │ ├── SparseVector.h │ │ │ ├── SparseView.h │ │ │ └── TriangularSolver.h │ │ │ ├── SparseLU │ │ │ ├── SparseLU.h │ │ │ ├── SparseLUImpl.h │ │ │ ├── SparseLU_Memory.h │ │ │ ├── SparseLU_Structs.h │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ ├── SparseLU_Utils.h │ │ │ ├── SparseLU_column_bmod.h │ │ │ ├── SparseLU_column_dfs.h │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ ├── SparseLU_panel_bmod.h │ │ │ ├── SparseLU_panel_dfs.h │ │ │ ├── SparseLU_pivotL.h │ │ │ ├── SparseLU_pruneL.h │ │ │ └── SparseLU_relax_snode.h │ │ │ ├── SparseQR │ │ │ └── SparseQR.h │ │ │ ├── StlSupport │ │ │ ├── StdDeque.h │ │ │ ├── StdList.h │ │ │ ├── StdVector.h │ │ │ └── details.h │ │ │ ├── SuperLUSupport │ │ │ └── SuperLUSupport.h │ │ │ ├── UmfPackSupport │ │ │ └── UmfPackSupport.h │ │ │ ├── misc │ │ │ ├── Image.h │ │ │ ├── Kernel.h │ │ │ ├── RealSvd2x2.h │ │ │ ├── blas.h │ │ │ ├── lapack.h │ │ │ ├── lapacke.h │ │ │ └── lapacke_mangling.h │ │ │ └── plugins │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ ├── BlockMethods.h │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ ├── IndexedViewMethods.h │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ └── MatrixCwiseUnaryOps.h │ ├── android_main.cpp │ ├── caffe2 │ │ ├── contrib │ │ │ ├── aten │ │ │ │ └── aten_op_template.h │ │ │ ├── gloo │ │ │ │ ├── allreduce_ops.h │ │ │ │ ├── barrier_ops.h │ │ │ │ ├── broadcast_ops.h │ │ │ │ ├── common.h │ │ │ │ ├── common_world_ops.h │ │ │ │ ├── context.h │ │ │ │ └── store_handler.h │ │ │ ├── nccl │ │ │ │ └── cuda_nccl_gpu.h │ │ │ ├── nervana │ │ │ │ ├── nervana.h │ │ │ │ └── nervana_c_api.h │ │ │ ├── observers │ │ │ │ └── time_observer.h │ │ │ ├── prof │ │ │ │ ├── htrace_conf.h │ │ │ │ ├── prof_dag_net.h │ │ │ │ └── prof_dag_stats_op.h │ │ │ ├── shm_mutex │ │ │ │ └── shm_mutex.h │ │ │ ├── torch │ │ │ │ └── torch_op.h │ │ │ └── warpctc │ │ │ │ └── ctc_op.h │ │ ├── core │ │ │ ├── allocator.h │ │ │ ├── asan.h │ │ │ ├── blob.h │ │ │ ├── blob_serialization.h │ │ │ ├── blob_serializer_base.h │ │ │ ├── blob_stats.h │ │ │ ├── common.h │ │ │ ├── common_cudnn.h │ │ │ ├── common_gpu.h │ │ │ ├── common_omp.h │ │ │ ├── context.h │ │ │ ├── context_gpu.h │ │ │ ├── db.h │ │ │ ├── event.h │ │ │ ├── flags.h │ │ │ ├── graph.h │ │ │ ├── init.h │ │ │ ├── logging.h │ │ │ ├── logging_is_google_glog.h │ │ │ ├── logging_is_not_google_glog.h │ │ │ ├── macros.h │ │ │ ├── memonger.h │ │ │ ├── net.h │ │ │ ├── net_async_dag_gpu.h │ │ │ ├── net_dag.h │ │ │ ├── net_simple.h │ │ │ ├── net_simple_async.h │ │ │ ├── observer.h │ │ │ ├── operator.h │ │ │ ├── operator_gradient.h │ │ │ ├── operator_schema.h │ │ │ ├── plan_executor.h │ │ │ ├── predictor.h │ │ │ ├── qtensor.h │ │ │ ├── qtensor_serialization.h │ │ │ ├── registry.h │ │ │ ├── scope_guard.h │ │ │ ├── static_tracepoint.h │ │ │ ├── static_tracepoint_elfx86.h │ │ │ ├── stats.h │ │ │ ├── tensor.h │ │ │ ├── timer.h │ │ │ ├── transform.h │ │ │ ├── typeid.h │ │ │ ├── types.h │ │ │ └── workspace.h │ │ ├── cuda_rtc │ │ │ └── common_rtc.h │ │ ├── db │ │ │ └── create_db_op.h │ │ ├── distributed │ │ │ ├── file_store_handler.h │ │ │ ├── file_store_handler_op.h │ │ │ ├── redis_store_handler.h │ │ │ ├── redis_store_handler_op.h │ │ │ ├── store_handler.h │ │ │ └── store_ops.h │ │ ├── experiments │ │ │ └── operators │ │ │ │ ├── fully_connected_op_decomposition.h │ │ │ │ ├── fully_connected_op_prune.h │ │ │ │ ├── fully_connected_op_sparse.h │ │ │ │ ├── funhash_op.h │ │ │ │ ├── sparse_funhash_op.h │ │ │ │ ├── sparse_matrix_reshape_op.h │ │ │ │ ├── tt_contraction_op.h │ │ │ │ └── tt_pad_op.h │ │ ├── image │ │ │ ├── image_input_op.h │ │ │ └── transform_gpu.h │ │ ├── mkl │ │ │ ├── mkl_utils.h │ │ │ ├── operators │ │ │ │ └── operator_fallback_mkl.h │ │ │ └── utils │ │ │ │ ├── mkl_context.h │ │ │ │ ├── mkl_dnn_cppwrapper.h │ │ │ │ ├── mkl_memory.h │ │ │ │ ├── mkl_operator.h │ │ │ │ ├── mkl_version_check.h │ │ │ │ └── sgemm_pack.h │ │ ├── mobile │ │ │ └── contrib │ │ │ │ ├── ios │ │ │ │ ├── ios_caffe.h │ │ │ │ ├── ios_caffe_defines.h │ │ │ │ ├── ios_caffe_predictor.h │ │ │ │ └── mpscnn │ │ │ │ │ ├── mpscnn.h │ │ │ │ │ ├── mpscnn_context.h │ │ │ │ │ ├── mpscnn_graph_mask.h │ │ │ │ │ ├── mpscnn_kernels.h │ │ │ │ │ └── mpscnn_test.h │ │ │ │ ├── libopencl-stub │ │ │ │ └── include │ │ │ │ │ ├── CL │ │ │ │ │ ├── cl.h │ │ │ │ │ ├── cl_ext.h │ │ │ │ │ ├── cl_gl.h │ │ │ │ │ ├── cl_gl_ext.h │ │ │ │ │ ├── cl_platform.h │ │ │ │ │ └── opencl.h │ │ │ │ │ └── libopencl.h │ │ │ │ ├── opengl │ │ │ │ ├── android │ │ │ │ │ ├── AndroidGLContext.h │ │ │ │ │ ├── arm_neon_support.h │ │ │ │ │ └── gl3stub.h │ │ │ │ ├── core │ │ │ │ │ ├── DataTransfer.h │ │ │ │ │ ├── GL.h │ │ │ │ │ ├── GLContext.h │ │ │ │ │ ├── GLFilter.h │ │ │ │ │ ├── GLImage.h │ │ │ │ │ ├── GLImageAllocator.h │ │ │ │ │ ├── GLLogging.h │ │ │ │ │ ├── GLPBO.h │ │ │ │ │ ├── GLPlainTexture.h │ │ │ │ │ ├── GLPredictor.h │ │ │ │ │ ├── GLTexture.h │ │ │ │ │ ├── ImageAllocator.h │ │ │ │ │ ├── arm_neon_support.h │ │ │ │ │ └── rewrite_net.h │ │ │ │ ├── ios │ │ │ │ │ ├── IOSGLContext.h │ │ │ │ │ ├── IOSGLImageAllocator.h │ │ │ │ │ └── IOSGLTexture.h │ │ │ │ ├── operators │ │ │ │ │ └── gl_tiling_utils.h │ │ │ │ └── test │ │ │ │ │ ├── TestGLConvolution.h │ │ │ │ │ └── opengl_test.h │ │ │ │ ├── snpe │ │ │ │ └── snpe_ffi.h │ │ │ │ └── ulp2 │ │ │ │ ├── ulp.h │ │ │ │ └── ulp_neon.h │ │ ├── mpi │ │ │ ├── mpi_common.h │ │ │ └── mpi_ops.h │ │ ├── operators │ │ │ ├── accumulate_op.h │ │ │ ├── accuracy_op.h │ │ │ ├── apmeter_op.h │ │ │ ├── batch_box_cox_op.h │ │ │ ├── batch_gather_ops.h │ │ │ ├── batch_matmul_op.h │ │ │ ├── boolean_mask_ops.h │ │ │ ├── boolean_unmask_ops.h │ │ │ ├── cast_op.h │ │ │ ├── channel_shuffle_op.h │ │ │ ├── clip_op.h │ │ │ ├── concat_split_op.h │ │ │ ├── conditional_op.h │ │ │ ├── conv_op.h │ │ │ ├── conv_op_cache_cudnn.h │ │ │ ├── conv_op_impl.h │ │ │ ├── conv_op_shared.h │ │ │ ├── conv_pool_op_base.h │ │ │ ├── conv_transpose_op.h │ │ │ ├── conv_transpose_op_impl.h │ │ │ ├── conv_transpose_op_mobile.h │ │ │ ├── conv_transpose_op_mobile_impl.h │ │ │ ├── conv_transpose_unpool_op_base.h │ │ │ ├── cosine_embedding_criterion_op.h │ │ │ ├── counter_ops.h │ │ │ ├── create_scope_op.h │ │ │ ├── cross_entropy_op.h │ │ │ ├── dataset_ops.h │ │ │ ├── distance_op.h │ │ │ ├── do_op.h │ │ │ ├── dropout_op.h │ │ │ ├── elementwise_linear_op.h │ │ │ ├── elementwise_logical_ops.h │ │ │ ├── elementwise_op.h │ │ │ ├── elementwise_op_test.h │ │ │ ├── elu_op.h │ │ │ ├── feed_blob_op.h │ │ │ ├── filler_op.h │ │ │ ├── find_duplicate_elements_op.h │ │ │ ├── find_op.h │ │ │ ├── free_op.h │ │ │ ├── fully_connected_op.h │ │ │ ├── given_tensor_fill_op.h │ │ │ ├── gru_unit_op.h │ │ │ ├── h_softmax_op.h │ │ │ ├── half_float_ops.h │ │ │ ├── if_op.h │ │ │ ├── im2col_op.h │ │ │ ├── index_hash_ops.h │ │ │ ├── instance_norm_op.h │ │ │ ├── layer_norm_op.h │ │ │ ├── leaky_relu_op.h │ │ │ ├── lengths_reducer_ops.h │ │ │ ├── lengths_reducer_rowwise_8bit_ops.h │ │ │ ├── lengths_tile_op.h │ │ │ ├── lengths_top_k_op.h │ │ │ ├── load_save_op.h │ │ │ ├── local_response_normalization_op.h │ │ │ ├── loss_op.h │ │ │ ├── lpnorm_op.h │ │ │ ├── lstm_unit_op.h │ │ │ ├── map_ops.h │ │ │ ├── margin_ranking_criterion_op.h │ │ │ ├── math_ops.h │ │ │ ├── matmul_op.h │ │ │ ├── max_pool_with_index.h │ │ │ ├── merge_id_lists_op.h │ │ │ ├── multi_class_accuracy_op.h │ │ │ ├── no_default_engine_op.h │ │ │ ├── normalize_op.h │ │ │ ├── one_hot_ops.h │ │ │ ├── operator_fallback_gpu.h │ │ │ ├── order_switch_ops.h │ │ │ ├── pack_rnn_sequence_op.h │ │ │ ├── pack_segments.h │ │ │ ├── pad_op.h │ │ │ ├── partition_ops.h │ │ │ ├── perplexity_op.h │ │ │ ├── piecewise_linear_transform_op.h │ │ │ ├── pool_op.h │ │ │ ├── prefetch_op.h │ │ │ ├── prelu_op.h │ │ │ ├── prepend_dim_op.h │ │ │ ├── rank_loss_op.h │ │ │ ├── recurrent_network_blob_fetcher_op.h │ │ │ ├── recurrent_network_executor.h │ │ │ ├── recurrent_network_executor_gpu.h │ │ │ ├── recurrent_network_executor_incl.h │ │ │ ├── recurrent_network_op.h │ │ │ ├── recurrent_op_cudnn.h │ │ │ ├── reducer_functors.h │ │ │ ├── reduction_front_back_ops.h │ │ │ ├── reduction_ops.h │ │ │ ├── relu_op.h │ │ │ ├── remove_data_blocks_op.h │ │ │ ├── replace_nan_op.h │ │ │ ├── reshape_op.h │ │ │ ├── resize_op.h │ │ │ ├── reverse_packed_segs_op.h │ │ │ ├── rmac_regions_op.h │ │ │ ├── roi_pool_op.h │ │ │ ├── rowmul_op.h │ │ │ ├── scale_op.h │ │ │ ├── segment_reduction_op.h │ │ │ ├── sequence_ops.h │ │ │ ├── shape_op.h │ │ │ ├── sinusoid_position_encoding_op.h │ │ │ ├── slice_op.h │ │ │ ├── softmax_op.h │ │ │ ├── softmax_shared.h │ │ │ ├── softmax_with_loss_op.h │ │ │ ├── softplus_op.h │ │ │ ├── space_batch_op.h │ │ │ ├── sparse_to_dense_mask_op.h │ │ │ ├── sparse_to_dense_op.h │ │ │ ├── spatial_batch_norm_op.h │ │ │ ├── spatial_softmax_with_loss_op.h │ │ │ ├── square_root_divide_op.h │ │ │ ├── stop_gradient.h │ │ │ ├── string_ops.h │ │ │ ├── summarize_op.h │ │ │ ├── tensor_protos_db_input.h │ │ │ ├── text_file_reader_utils.h │ │ │ ├── tile_op.h │ │ │ ├── top_k.h │ │ │ ├── transpose_op.h │ │ │ ├── tt_linear_op.h │ │ │ ├── utility_ops.h │ │ │ ├── while_op.h │ │ │ └── zero_gradient_op.h │ │ ├── perfkernels │ │ │ ├── common.h │ │ │ ├── cvtsh_ss_bugfix.h │ │ │ ├── embedding_lookup.h │ │ │ └── typed_axpy.h │ │ ├── proto │ │ │ ├── caffe2.pb.h │ │ │ ├── caffe2_legacy.pb.h │ │ │ ├── hsm.pb.h │ │ │ ├── metanet.pb.h │ │ │ ├── predictor_consts.pb.h │ │ │ └── prof_dag.pb.h │ │ ├── python │ │ │ └── pybind_state.h │ │ ├── queue │ │ │ ├── blobs_queue.h │ │ │ ├── blobs_queue_db.h │ │ │ ├── queue_ops.h │ │ │ ├── rebatching_queue.h │ │ │ └── rebatching_queue_ops.h │ │ ├── sgd │ │ │ ├── adagrad_op.h │ │ │ ├── adam_op.h │ │ │ ├── ftrl_op.h │ │ │ ├── iter_op.h │ │ │ ├── learning_rate_functors.h │ │ │ ├── learning_rate_op.h │ │ │ ├── momentum_sgd_op.h │ │ │ ├── rmsprop_op.h │ │ │ └── yellowfin_op.h │ │ ├── transforms │ │ │ ├── common_subexpression_elimination.h │ │ │ ├── conv_to_nnpack_transform.h │ │ │ ├── pattern_net_transform.h │ │ │ └── single_op_transform.h │ │ ├── utils │ │ │ ├── cast.h │ │ │ ├── cblas.h │ │ │ ├── conversions.h │ │ │ ├── cpu_neon.h │ │ │ ├── cpuid.h │ │ │ ├── fixed_divisor.h │ │ │ ├── math-detail.h │ │ │ ├── math.h │ │ │ ├── murmur_hash3.h │ │ │ ├── proto_utils.h │ │ │ ├── signal_handler.h │ │ │ ├── simple_queue.h │ │ │ ├── smart_tensor_printer.h │ │ │ ├── string_utils.h │ │ │ ├── thread_pool.h │ │ │ ├── threadpool │ │ │ │ ├── ThreadPool.h │ │ │ │ ├── ThreadPoolCommon.h │ │ │ │ ├── WorkersPool.h │ │ │ │ ├── pthreadpool.h │ │ │ │ └── pthreadpool_impl.h │ │ │ └── zmq_helper.h │ │ └── video │ │ │ ├── video_decoder.h │ │ │ ├── video_input_op.h │ │ │ └── video_io.h │ ├── camera │ │ ├── camera_engine.cpp │ │ ├── camera_engine.h │ │ ├── camera_listeners.cpp │ │ ├── camera_manager.cpp │ │ ├── camera_manager.h │ │ ├── camera_utils.cpp │ │ ├── camera_utils.h │ │ ├── image_reader.cpp │ │ ├── image_reader.h │ │ └── native_debug.h │ ├── classes.h │ ├── google │ │ └── protobuf │ │ │ ├── any.h │ │ │ ├── any.pb.h │ │ │ ├── any.proto │ │ │ ├── api.pb.h │ │ │ ├── api.proto │ │ │ ├── arena.h │ │ │ ├── arenastring.h │ │ │ ├── compiler │ │ │ ├── code_generator.h │ │ │ ├── command_line_interface.h │ │ │ ├── cpp │ │ │ │ └── cpp_generator.h │ │ │ ├── csharp │ │ │ │ ├── csharp_generator.h │ │ │ │ └── csharp_names.h │ │ │ ├── importer.h │ │ │ ├── java │ │ │ │ ├── java_generator.h │ │ │ │ └── java_names.h │ │ │ ├── javanano │ │ │ │ └── javanano_generator.h │ │ │ ├── js │ │ │ │ └── js_generator.h │ │ │ ├── objectivec │ │ │ │ ├── objectivec_generator.h │ │ │ │ └── objectivec_helpers.h │ │ │ ├── parser.h │ │ │ ├── php │ │ │ │ └── php_generator.h │ │ │ ├── plugin.h │ │ │ ├── plugin.pb.h │ │ │ ├── plugin.proto │ │ │ ├── python │ │ │ │ └── python_generator.h │ │ │ └── ruby │ │ │ │ └── ruby_generator.h │ │ │ ├── descriptor.h │ │ │ ├── descriptor.pb.h │ │ │ ├── descriptor.proto │ │ │ ├── descriptor_database.h │ │ │ ├── duration.pb.h │ │ │ ├── duration.proto │ │ │ ├── dynamic_message.h │ │ │ ├── empty.pb.h │ │ │ ├── empty.proto │ │ │ ├── extension_set.h │ │ │ ├── field_mask.pb.h │ │ │ ├── field_mask.proto │ │ │ ├── generated_enum_reflection.h │ │ │ ├── generated_enum_util.h │ │ │ ├── generated_message_reflection.h │ │ │ ├── generated_message_util.h │ │ │ ├── has_bits.h │ │ │ ├── io │ │ │ ├── coded_stream.h │ │ │ ├── gzip_stream.h │ │ │ ├── printer.h │ │ │ ├── strtod.h │ │ │ ├── tokenizer.h │ │ │ ├── zero_copy_stream.h │ │ │ ├── zero_copy_stream_impl.h │ │ │ └── zero_copy_stream_impl_lite.h │ │ │ ├── map.h │ │ │ ├── map_entry.h │ │ │ ├── map_entry_lite.h │ │ │ ├── map_field.h │ │ │ ├── map_field_inl.h │ │ │ ├── map_field_lite.h │ │ │ ├── map_type_handler.h │ │ │ ├── message.h │ │ │ ├── message_lite.h │ │ │ ├── metadata.h │ │ │ ├── reflection.h │ │ │ ├── reflection_ops.h │ │ │ ├── repeated_field.h │ │ │ ├── service.h │ │ │ ├── source_context.pb.h │ │ │ ├── source_context.proto │ │ │ ├── struct.pb.h │ │ │ ├── struct.proto │ │ │ ├── stubs │ │ │ ├── atomic_sequence_num.h │ │ │ ├── atomicops.h │ │ │ ├── atomicops_internals_arm64_gcc.h │ │ │ ├── atomicops_internals_arm_gcc.h │ │ │ ├── atomicops_internals_arm_qnx.h │ │ │ ├── atomicops_internals_atomicword_compat.h │ │ │ ├── atomicops_internals_generic_gcc.h │ │ │ ├── atomicops_internals_macosx.h │ │ │ ├── atomicops_internals_mips_gcc.h │ │ │ ├── atomicops_internals_pnacl.h │ │ │ ├── atomicops_internals_power.h │ │ │ ├── atomicops_internals_ppc_gcc.h │ │ │ ├── atomicops_internals_solaris.h │ │ │ ├── atomicops_internals_tsan.h │ │ │ ├── atomicops_internals_x86_gcc.h │ │ │ ├── atomicops_internals_x86_msvc.h │ │ │ ├── bytestream.h │ │ │ ├── callback.h │ │ │ ├── casts.h │ │ │ ├── common.h │ │ │ ├── fastmem.h │ │ │ ├── hash.h │ │ │ ├── logging.h │ │ │ ├── macros.h │ │ │ ├── mutex.h │ │ │ ├── once.h │ │ │ ├── platform_macros.h │ │ │ ├── port.h │ │ │ ├── scoped_ptr.h │ │ │ ├── shared_ptr.h │ │ │ ├── singleton.h │ │ │ ├── status.h │ │ │ ├── stl_util.h │ │ │ ├── stringpiece.h │ │ │ ├── template_util.h │ │ │ └── type_traits.h │ │ │ ├── text_format.h │ │ │ ├── timestamp.pb.h │ │ │ ├── timestamp.proto │ │ │ ├── type.pb.h │ │ │ ├── type.proto │ │ │ ├── unknown_field_set.h │ │ │ ├── util │ │ │ ├── field_comparator.h │ │ │ ├── field_mask_util.h │ │ │ ├── json_util.h │ │ │ ├── message_differencer.h │ │ │ ├── time_util.h │ │ │ ├── type_resolver.h │ │ │ └── type_resolver_util.h │ │ │ ├── wire_format.h │ │ │ ├── wire_format_lite.h │ │ │ ├── wire_format_lite_inl.h │ │ │ ├── wrappers.pb.h │ │ │ └── wrappers.proto │ ├── opencv │ │ ├── cv.h │ │ ├── cv.hpp │ │ ├── cvaux.h │ │ ├── cvaux.hpp │ │ ├── cvwimage.h │ │ ├── cxcore.h │ │ ├── cxcore.hpp │ │ ├── cxeigen.hpp │ │ ├── cxmisc.h │ │ ├── highgui.h │ │ └── ml.h │ └── opencv2 │ │ ├── calib3d │ │ └── calib3d.hpp │ │ ├── contrib │ │ ├── contrib.hpp │ │ ├── detection_based_tracker.hpp │ │ ├── hybridtracker.hpp │ │ ├── openfabmap.hpp │ │ └── retina.hpp │ │ ├── core │ │ ├── affine.hpp │ │ ├── core.hpp │ │ ├── core_c.h │ │ ├── cuda_devptrs.hpp │ │ ├── devmem2d.hpp │ │ ├── eigen.hpp │ │ ├── gpumat.hpp │ │ ├── internal.hpp │ │ ├── mat.hpp │ │ ├── opengl_interop.hpp │ │ ├── opengl_interop_deprecated.hpp │ │ ├── operations.hpp │ │ ├── types_c.h │ │ ├── version.hpp │ │ └── wimage.hpp │ │ ├── features2d │ │ └── features2d.hpp │ │ ├── flann │ │ ├── all_indices.h │ │ ├── allocator.h │ │ ├── any.h │ │ ├── autotuned_index.h │ │ ├── composite_index.h │ │ ├── config.h │ │ ├── defines.h │ │ ├── dist.h │ │ ├── dummy.h │ │ ├── dynamic_bitset.h │ │ ├── flann.hpp │ │ ├── flann_base.hpp │ │ ├── general.h │ │ ├── ground_truth.h │ │ ├── hdf5.h │ │ ├── heap.h │ │ ├── hierarchical_clustering_index.h │ │ ├── index_testing.h │ │ ├── kdtree_index.h │ │ ├── kdtree_single_index.h │ │ ├── kmeans_index.h │ │ ├── linear_index.h │ │ ├── logger.h │ │ ├── lsh_index.h │ │ ├── lsh_table.h │ │ ├── matrix.h │ │ ├── miniflann.hpp │ │ ├── nn_index.h │ │ ├── object_factory.h │ │ ├── params.h │ │ ├── random.h │ │ ├── result_set.h │ │ ├── sampling.h │ │ ├── saving.h │ │ ├── simplex_downhill.h │ │ └── timer.h │ │ ├── highgui │ │ ├── cap_ios.h │ │ ├── highgui.hpp │ │ ├── highgui_c.h │ │ └── ios.h │ │ ├── imgproc │ │ ├── imgproc.hpp │ │ ├── imgproc_c.h │ │ └── types_c.h │ │ ├── legacy │ │ ├── blobtrack.hpp │ │ ├── compat.hpp │ │ ├── legacy.hpp │ │ └── streams.hpp │ │ ├── ml │ │ └── ml.hpp │ │ ├── objdetect │ │ └── objdetect.hpp │ │ ├── ocl │ │ ├── matrix_operations.hpp │ │ └── ocl.hpp │ │ ├── opencv.hpp │ │ ├── opencv_modules.hpp │ │ ├── photo │ │ ├── photo.hpp │ │ └── photo_c.h │ │ ├── stitching │ │ ├── detail │ │ │ ├── autocalib.hpp │ │ │ ├── blenders.hpp │ │ │ ├── camera.hpp │ │ │ ├── exposure_compensate.hpp │ │ │ ├── matchers.hpp │ │ │ ├── motion_estimators.hpp │ │ │ ├── seam_finders.hpp │ │ │ ├── util.hpp │ │ │ ├── util_inl.hpp │ │ │ ├── warpers.hpp │ │ │ └── warpers_inl.hpp │ │ ├── stitcher.hpp │ │ └── warpers.hpp │ │ ├── superres │ │ ├── optical_flow.hpp │ │ └── superres.hpp │ │ ├── ts │ │ ├── gpu_perf.hpp │ │ ├── gpu_test.hpp │ │ ├── ts.hpp │ │ ├── ts_gtest.h │ │ └── ts_perf.hpp │ │ ├── video │ │ ├── background_segm.hpp │ │ ├── tracking.hpp │ │ └── video.hpp │ │ └── videostab │ │ ├── deblurring.hpp │ │ ├── fast_marching.hpp │ │ ├── fast_marching_inl.hpp │ │ ├── frame_source.hpp │ │ ├── global_motion.hpp │ │ ├── inpainting.hpp │ │ ├── log.hpp │ │ ├── motion_stabilizing.hpp │ │ ├── optical_flow.hpp │ │ ├── stabilizer.hpp │ │ └── videostab.hpp │ ├── java │ └── com │ │ └── sample │ │ └── textureview │ │ └── ViewActivity.java │ ├── libs │ └── armeabi-v7a │ │ ├── libCAFFE2_NNPACK.a │ │ ├── libCAFFE2_PTHREADPOOL.a │ │ ├── libCaffe2_CPU.a │ │ ├── libcpufeatures.a │ │ ├── libglog.so │ │ ├── libgnustl_shared.so │ │ ├── libprotobuf-lite.a │ │ ├── libprotobuf.a │ │ └── opencv │ │ ├── libIlmImf.a │ │ ├── liblibjasper.a │ │ ├── liblibjpeg.a │ │ ├── liblibpng.a │ │ ├── liblibtiff.a │ │ ├── libopencv_core.a │ │ ├── libopencv_highgui.a │ │ ├── libopencv_imgproc.a │ │ └── libtbb.a │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── layout │ └── activity_main.xml │ └── values │ └── strings.xml └── texture-view.iml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/.gitignore -------------------------------------------------------------------------------- /.gradle/3.3/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/.gradle/3.3/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /.gradle/3.3/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/.gradle/3.3/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /.gradle/3.3/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/.gradle/3.3/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /.gradle/3.3/taskArtifacts/taskArtifacts.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/.gradle/3.3/taskArtifacts/taskArtifacts.lock -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/libraries/support_annotations_25_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/.idea/libraries/support_annotations_25_3_1.xml -------------------------------------------------------------------------------- /.idea/libraries/support_compat_25_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/.idea/libraries/support_compat_25_3_1.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/.idea/markdown-navigator/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/README.md -------------------------------------------------------------------------------- /camera.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/camera.iml -------------------------------------------------------------------------------- /device-2017-10-23-185701.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/device-2017-10-23-185701.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/gradlew.bat -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/local.properties -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':texture-view' 2 | -------------------------------------------------------------------------------- /texture-view/.externalNativeBuild/cmake/debug/arm64-v8a/.ninja_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/.externalNativeBuild/cmake/debug/arm64-v8a/.ninja_log -------------------------------------------------------------------------------- /texture-view/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/build.gradle -------------------------------------------------------------------------------- /texture-view/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /texture-view/src/main/assets/squeeze_init_net.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/assets/squeeze_init_net.pb -------------------------------------------------------------------------------- /texture-view/src/main/assets/squeeze_predict_net.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/assets/squeeze_predict_net.pb -------------------------------------------------------------------------------- /texture-view/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/CMakeLists.txt -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/Cholesky -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/CholmodSupport -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/Core -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/Dense -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/Eigen -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/Eigenvalues -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/Geometry -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/Householder -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/Jacobi -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/LU -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/MetisSupport -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/OrderingMethods -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/PardisoSupport -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/QR -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/SPQRSupport -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/SVD -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/Sparse -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/SparseCholesky -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/SparseCore -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/SparseLU -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/SparseQR -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/StdDeque -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/StdList -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/StdVector -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Cholesky/LLT_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Cholesky/LLT_LAPACKE.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/ArithmeticSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/ArithmeticSequence.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/AssignEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/AssignEvaluator.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/BooleanRedux.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/CommaInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/CommaInitializer.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/ConditionEstimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/ConditionEstimator.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/CoreEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/CoreEvaluators.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/CoreIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/CoreIterators.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/CwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/CwiseBinaryOp.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/CwiseNullaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/CwiseNullaryOp.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/CwiseTernaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/CwiseTernaryOp.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/CwiseUnaryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/CwiseUnaryView.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/DenseCoeffsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/DenseCoeffsBase.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/DiagonalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/DiagonalMatrix.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/DiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/DiagonalProduct.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/ForceAlignedAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/ForceAlignedAccess.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/GeneralProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/GeneralProduct.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/GenericPacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/GenericPacketMath.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/GlobalFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/GlobalFunctions.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/IndexedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/IndexedView.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/MathFunctions.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/MathFunctionsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/MathFunctionsImpl.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/PermutationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/PermutationMatrix.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/PlainObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/PlainObjectBase.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/ProductEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/ProductEvaluators.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/ReturnByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/ReturnByValue.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/SelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/SelfAdjointView.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/SelfCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/SelfCwiseBinaryOp.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/SolveTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/SolveTriangular.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Transpositions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Transpositions.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/TriangularMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/TriangularMatrix.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/arch/AVX/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/arch/AVX/Complex.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/arch/AVX/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/arch/AVX/MathFunctions.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/arch/AVX/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/arch/AVX/PacketMath.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/arch/AVX/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/arch/AVX/TypeCasting.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/arch/AVX512/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/arch/AVX512/PacketMath.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/arch/AltiVec/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/arch/AltiVec/Complex.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/arch/AltiVec/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/arch/AltiVec/PacketMath.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/arch/CUDA/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/arch/CUDA/Complex.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/arch/CUDA/Half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/arch/CUDA/Half.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/arch/CUDA/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/arch/CUDA/MathFunctions.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/arch/CUDA/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/arch/CUDA/PacketMath.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/arch/CUDA/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/arch/CUDA/TypeCasting.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/arch/Default/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/arch/Default/Settings.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/arch/NEON/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/arch/NEON/Complex.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/arch/NEON/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/arch/NEON/MathFunctions.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/arch/NEON/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/arch/NEON/PacketMath.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/arch/SSE/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/arch/SSE/Complex.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/arch/SSE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/arch/SSE/MathFunctions.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/arch/SSE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/arch/SSE/PacketMath.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/arch/SSE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/arch/SSE/TypeCasting.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/arch/ZVector/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/arch/ZVector/Complex.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/arch/ZVector/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/arch/ZVector/PacketMath.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/functors/BinaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/functors/BinaryFunctors.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/functors/StlFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/functors/StlFunctors.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/functors/UnaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/functors/UnaryFunctors.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/products/Parallelizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/products/Parallelizer.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/util/BlasUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/util/BlasUtil.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/util/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/util/Constants.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/util/IndexedViewHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/util/IndexedViewHelper.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/util/IntegralConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/util/IntegralConstant.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/util/MKL_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/util/MKL_support.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/util/NonMPL2.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/util/StaticAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/util/StaticAssert.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/util/SymbolicIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/util/SymbolicIndex.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Core/util/XprHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Core/util/XprHelper.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Eigenvalues/ComplexSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Eigenvalues/ComplexSchur.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Eigenvalues/EigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Eigenvalues/EigenSolver.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Eigenvalues/RealQZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Eigenvalues/RealQZ.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Eigenvalues/RealSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Eigenvalues/RealSchur.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Geometry/EulerAngles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Geometry/EulerAngles.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Geometry/Homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Geometry/Homogeneous.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Geometry/OrthoMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Geometry/OrthoMethods.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Geometry/ParametrizedLine.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Geometry/Quaternion.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Geometry/RotationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Geometry/RotationBase.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Geometry/Transform.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Geometry/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Geometry/Translation.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Geometry/arch/Geometry_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Geometry/arch/Geometry_SSE.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Householder/BlockHouseholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Householder/BlockHouseholder.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Householder/Householder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Householder/Householder.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/LU/PartialPivLU_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/LU/PartialPivLU_LAPACKE.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/LU/arch/Inverse_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/LU/arch/Inverse_SSE.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/MetisSupport/MetisSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/MetisSupport/MetisSupport.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/OrderingMethods/Amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/OrderingMethods/Amd.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/OrderingMethods/Eigen_Colamd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/OrderingMethods/Eigen_Colamd.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/OrderingMethods/Ordering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/OrderingMethods/Ordering.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/PaStiXSupport/PaStiXSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/PaStiXSupport/PaStiXSupport.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/QR/ColPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/QR/ColPivHouseholderQR.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/QR/FullPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/QR/FullPivHouseholderQR.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/QR/HouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/QR/HouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SVD/JacobiSVD_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SVD/JacobiSVD_LAPACKE.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SVD/UpperBidiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SVD/UpperBidiagonalization.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseCore/AmbiVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseCore/AmbiVector.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseCore/CompressedStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseCore/CompressedStorage.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseCore/SparseAssign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseCore/SparseAssign.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseCore/SparseBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseCore/SparseBlock.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseCore/SparseColEtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseCore/SparseColEtree.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseCore/SparseDot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseCore/SparseDot.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseCore/SparseFuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseCore/SparseFuzzy.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseCore/SparseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseCore/SparseMap.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseCore/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseCore/SparseMatrix.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseCore/SparseMatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseCore/SparseMatrixBase.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseCore/SparsePermutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseCore/SparsePermutation.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseCore/SparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseCore/SparseProduct.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseCore/SparseRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseCore/SparseRedux.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseCore/SparseRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseCore/SparseRef.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseCore/SparseSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseCore/SparseSolverBase.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseCore/SparseTranspose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseCore/SparseTranspose.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseCore/SparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseCore/SparseUtil.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseCore/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseCore/SparseVector.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseCore/SparseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseCore/SparseView.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseCore/TriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseCore/TriangularSolver.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseLU/SparseLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseLU/SparseLU.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseLU/SparseLUImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseLU/SparseLUImpl.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseLU/SparseLU_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseLU/SparseLU_Memory.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseLU/SparseLU_Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseLU/SparseLU_Structs.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseLU/SparseLU_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseLU/SparseLU_Utils.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseLU/SparseLU_column_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseLU/SparseLU_column_dfs.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseLU/SparseLU_panel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseLU/SparseLU_panel_bmod.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseLU/SparseLU_panel_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseLU/SparseLU_panel_dfs.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseLU/SparseLU_pivotL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseLU/SparseLU_pivotL.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseLU/SparseLU_pruneL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseLU/SparseLU_pruneL.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/SparseQR/SparseQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/SparseQR/SparseQR.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/StlSupport/StdDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/StlSupport/StdDeque.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/StlSupport/StdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/StlSupport/StdList.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/StlSupport/StdVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/StlSupport/StdVector.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/StlSupport/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/StlSupport/details.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/misc/RealSvd2x2.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/misc/lapacke.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/misc/lapacke_mangling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/misc/lapacke_mangling.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/plugins/ArrayCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/plugins/ArrayCwiseBinaryOps.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/plugins/ArrayCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/plugins/ArrayCwiseUnaryOps.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/plugins/BlockMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/plugins/BlockMethods.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/plugins/CommonCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/plugins/CommonCwiseBinaryOps.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/plugins/CommonCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/plugins/CommonCwiseUnaryOps.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/plugins/IndexedViewMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/plugins/IndexedViewMethods.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/plugins/MatrixCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/plugins/MatrixCwiseBinaryOps.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/Eigen/src/plugins/MatrixCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/Eigen/src/plugins/MatrixCwiseUnaryOps.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/android_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/android_main.cpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/contrib/aten/aten_op_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/contrib/aten/aten_op_template.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/contrib/gloo/allreduce_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/contrib/gloo/allreduce_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/contrib/gloo/barrier_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/contrib/gloo/barrier_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/contrib/gloo/broadcast_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/contrib/gloo/broadcast_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/contrib/gloo/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/contrib/gloo/common.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/contrib/gloo/common_world_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/contrib/gloo/common_world_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/contrib/gloo/context.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/contrib/gloo/store_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/contrib/gloo/store_handler.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/contrib/nccl/cuda_nccl_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/contrib/nccl/cuda_nccl_gpu.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/contrib/nervana/nervana.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/contrib/nervana/nervana.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/contrib/nervana/nervana_c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/contrib/nervana/nervana_c_api.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/contrib/observers/time_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/contrib/observers/time_observer.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/contrib/prof/htrace_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/contrib/prof/htrace_conf.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/contrib/prof/prof_dag_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/contrib/prof/prof_dag_net.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/contrib/prof/prof_dag_stats_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/contrib/prof/prof_dag_stats_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/contrib/shm_mutex/shm_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/contrib/shm_mutex/shm_mutex.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/contrib/torch/torch_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/contrib/torch/torch_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/contrib/warpctc/ctc_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/contrib/warpctc/ctc_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/allocator.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/asan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/asan.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/blob.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/blob_serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/blob_serialization.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/blob_serializer_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/blob_serializer_base.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/blob_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/blob_stats.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/common.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/common_cudnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/common_cudnn.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/common_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/common_gpu.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/common_omp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/common_omp.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/context.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/context_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/context_gpu.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/db.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/event.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/flags.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/graph.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/init.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/logging.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/logging_is_google_glog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/logging_is_google_glog.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/logging_is_not_google_glog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/logging_is_not_google_glog.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/macros.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/memonger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/memonger.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/net.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/net_async_dag_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/net_async_dag_gpu.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/net_dag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/net_dag.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/net_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/net_simple.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/net_simple_async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/net_simple_async.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/observer.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/operator.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/operator_gradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/operator_gradient.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/operator_schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/operator_schema.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/plan_executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/plan_executor.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/predictor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/predictor.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/qtensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/qtensor.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/qtensor_serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/qtensor_serialization.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/registry.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/scope_guard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/scope_guard.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/static_tracepoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/static_tracepoint.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/static_tracepoint_elfx86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/static_tracepoint_elfx86.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/stats.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/tensor.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/timer.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/transform.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/typeid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/typeid.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/types.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/core/workspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/core/workspace.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/cuda_rtc/common_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/cuda_rtc/common_rtc.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/db/create_db_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/db/create_db_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/distributed/store_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/distributed/store_handler.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/distributed/store_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/distributed/store_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/image/image_input_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/image/image_input_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/image/transform_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/image/transform_gpu.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/mkl/mkl_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/mkl/mkl_utils.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/mkl/utils/mkl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/mkl/utils/mkl_context.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/mkl/utils/mkl_dnn_cppwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/mkl/utils/mkl_dnn_cppwrapper.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/mkl/utils/mkl_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/mkl/utils/mkl_memory.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/mkl/utils/mkl_operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/mkl/utils/mkl_operator.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/mkl/utils/mkl_version_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/mkl/utils/mkl_version_check.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/mkl/utils/sgemm_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/mkl/utils/sgemm_pack.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/mobile/contrib/ios/ios_caffe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/mobile/contrib/ios/ios_caffe.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/mobile/contrib/opengl/core/GL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/mobile/contrib/opengl/core/GL.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/mobile/contrib/snpe/snpe_ffi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/mobile/contrib/snpe/snpe_ffi.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/mobile/contrib/ulp2/ulp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/mobile/contrib/ulp2/ulp.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/mobile/contrib/ulp2/ulp_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/mobile/contrib/ulp2/ulp_neon.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/mpi/mpi_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/mpi/mpi_common.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/mpi/mpi_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/mpi/mpi_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/accumulate_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/accumulate_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/accuracy_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/accuracy_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/apmeter_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/apmeter_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/batch_box_cox_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/batch_box_cox_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/batch_gather_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/batch_gather_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/batch_matmul_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/batch_matmul_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/boolean_mask_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/boolean_mask_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/boolean_unmask_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/boolean_unmask_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/cast_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/cast_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/channel_shuffle_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/channel_shuffle_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/clip_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/clip_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/concat_split_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/concat_split_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/conditional_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/conditional_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/conv_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/conv_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/conv_op_cache_cudnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/conv_op_cache_cudnn.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/conv_op_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/conv_op_impl.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/conv_op_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/conv_op_shared.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/conv_pool_op_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/conv_pool_op_base.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/conv_transpose_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/conv_transpose_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/counter_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/counter_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/create_scope_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/create_scope_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/cross_entropy_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/cross_entropy_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/dataset_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/dataset_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/distance_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/distance_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/do_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/do_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/dropout_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/dropout_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/elementwise_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/elementwise_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/elementwise_op_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/elementwise_op_test.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/elu_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/elu_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/feed_blob_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/feed_blob_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/filler_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/filler_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/find_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/find_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/free_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/free_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/fully_connected_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/fully_connected_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/gru_unit_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/gru_unit_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/h_softmax_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/h_softmax_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/half_float_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/half_float_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/if_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/if_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/im2col_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/im2col_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/index_hash_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/index_hash_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/instance_norm_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/instance_norm_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/layer_norm_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/layer_norm_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/leaky_relu_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/leaky_relu_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/lengths_reducer_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/lengths_reducer_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/lengths_tile_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/lengths_tile_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/lengths_top_k_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/lengths_top_k_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/load_save_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/load_save_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/loss_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/loss_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/lpnorm_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/lpnorm_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/lstm_unit_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/lstm_unit_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/map_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/map_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/math_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/math_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/matmul_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/matmul_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/max_pool_with_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/max_pool_with_index.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/merge_id_lists_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/merge_id_lists_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/normalize_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/normalize_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/one_hot_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/one_hot_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/order_switch_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/order_switch_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/pack_segments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/pack_segments.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/pad_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/pad_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/partition_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/partition_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/perplexity_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/perplexity_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/pool_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/pool_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/prefetch_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/prefetch_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/prelu_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/prelu_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/prepend_dim_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/prepend_dim_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/rank_loss_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/rank_loss_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/recurrent_op_cudnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/recurrent_op_cudnn.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/reducer_functors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/reducer_functors.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/reduction_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/reduction_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/relu_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/relu_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/replace_nan_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/replace_nan_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/reshape_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/reshape_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/resize_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/resize_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/rmac_regions_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/rmac_regions_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/roi_pool_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/roi_pool_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/rowmul_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/rowmul_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/scale_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/scale_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/sequence_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/sequence_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/shape_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/shape_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/slice_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/slice_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/softmax_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/softmax_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/softmax_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/softmax_shared.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/softplus_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/softplus_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/space_batch_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/space_batch_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/sparse_to_dense_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/sparse_to_dense_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/stop_gradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/stop_gradient.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/string_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/string_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/summarize_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/summarize_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/tile_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/tile_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/top_k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/top_k.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/transpose_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/transpose_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/tt_linear_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/tt_linear_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/utility_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/utility_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/while_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/while_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/operators/zero_gradient_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/operators/zero_gradient_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/perfkernels/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/perfkernels/common.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/perfkernels/cvtsh_ss_bugfix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/perfkernels/cvtsh_ss_bugfix.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/perfkernels/embedding_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/perfkernels/embedding_lookup.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/perfkernels/typed_axpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/perfkernels/typed_axpy.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/proto/caffe2.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/proto/caffe2.pb.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/proto/caffe2_legacy.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/proto/caffe2_legacy.pb.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/proto/hsm.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/proto/hsm.pb.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/proto/metanet.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/proto/metanet.pb.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/proto/predictor_consts.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/proto/predictor_consts.pb.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/proto/prof_dag.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/proto/prof_dag.pb.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/python/pybind_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/python/pybind_state.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/queue/blobs_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/queue/blobs_queue.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/queue/blobs_queue_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/queue/blobs_queue_db.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/queue/queue_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/queue/queue_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/queue/rebatching_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/queue/rebatching_queue.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/queue/rebatching_queue_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/queue/rebatching_queue_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/sgd/adagrad_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/sgd/adagrad_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/sgd/adam_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/sgd/adam_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/sgd/ftrl_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/sgd/ftrl_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/sgd/iter_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/sgd/iter_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/sgd/learning_rate_functors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/sgd/learning_rate_functors.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/sgd/learning_rate_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/sgd/learning_rate_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/sgd/momentum_sgd_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/sgd/momentum_sgd_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/sgd/rmsprop_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/sgd/rmsprop_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/sgd/yellowfin_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/sgd/yellowfin_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/utils/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/utils/cast.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/utils/cblas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/utils/cblas.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/utils/conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/utils/conversions.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/utils/cpu_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/utils/cpu_neon.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/utils/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/utils/cpuid.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/utils/fixed_divisor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/utils/fixed_divisor.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/utils/math-detail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/utils/math-detail.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/utils/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/utils/math.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/utils/murmur_hash3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/utils/murmur_hash3.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/utils/proto_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/utils/proto_utils.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/utils/signal_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/utils/signal_handler.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/utils/simple_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/utils/simple_queue.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/utils/smart_tensor_printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/utils/smart_tensor_printer.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/utils/string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/utils/string_utils.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/utils/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/utils/thread_pool.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/utils/threadpool/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/utils/threadpool/ThreadPool.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/utils/threadpool/WorkersPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/utils/threadpool/WorkersPool.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/utils/threadpool/pthreadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/utils/threadpool/pthreadpool.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/utils/zmq_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/utils/zmq_helper.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/video/video_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/video/video_decoder.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/video/video_input_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/video/video_input_op.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/caffe2/video/video_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/caffe2/video/video_io.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/camera/camera_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/camera/camera_engine.cpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/camera/camera_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/camera/camera_engine.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/camera/camera_listeners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/camera/camera_listeners.cpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/camera/camera_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/camera/camera_manager.cpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/camera/camera_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/camera/camera_manager.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/camera/camera_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/camera/camera_utils.cpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/camera/camera_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/camera/camera_utils.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/camera/image_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/camera/image_reader.cpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/camera/image_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/camera/image_reader.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/camera/native_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/camera/native_debug.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/classes.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/any.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/any.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/any.pb.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/any.proto -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/api.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/api.pb.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/api.proto -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/arena.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/arenastring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/arenastring.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/compiler/importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/compiler/importer.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/compiler/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/compiler/parser.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/compiler/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/compiler/plugin.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/compiler/plugin.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/compiler/plugin.pb.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/compiler/plugin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/compiler/plugin.proto -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/descriptor.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/descriptor.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/descriptor.pb.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/descriptor_database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/descriptor_database.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/duration.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/duration.pb.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/duration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/duration.proto -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/dynamic_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/dynamic_message.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/empty.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/empty.pb.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/empty.proto -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/extension_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/extension_set.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/field_mask.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/field_mask.pb.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/field_mask.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/field_mask.proto -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/generated_enum_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/generated_enum_util.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/has_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/has_bits.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/io/coded_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/io/coded_stream.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/io/gzip_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/io/gzip_stream.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/io/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/io/printer.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/io/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/io/strtod.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/io/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/io/tokenizer.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/io/zero_copy_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/io/zero_copy_stream.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/map.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/map_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/map_entry.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/map_entry_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/map_entry_lite.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/map_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/map_field.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/map_field_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/map_field_inl.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/map_field_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/map_field_lite.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/map_type_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/map_type_handler.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/message.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/message_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/message_lite.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/metadata.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/reflection.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/reflection_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/reflection_ops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/repeated_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/repeated_field.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/service.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/source_context.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/source_context.pb.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/source_context.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/source_context.proto -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/struct.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/struct.pb.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/struct.proto -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/stubs/atomicops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/stubs/atomicops.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/stubs/bytestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/stubs/bytestream.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/stubs/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/stubs/callback.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/stubs/casts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/stubs/casts.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/stubs/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/stubs/common.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/stubs/fastmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/stubs/fastmem.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/stubs/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/stubs/hash.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/stubs/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/stubs/logging.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/stubs/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/stubs/macros.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/stubs/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/stubs/mutex.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/stubs/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/stubs/once.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/stubs/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/stubs/port.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/stubs/scoped_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/stubs/scoped_ptr.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/stubs/shared_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/stubs/shared_ptr.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/stubs/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/stubs/singleton.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/stubs/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/stubs/status.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/stubs/stl_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/stubs/stl_util.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/stubs/stringpiece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/stubs/stringpiece.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/stubs/template_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/stubs/template_util.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/stubs/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/stubs/type_traits.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/text_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/text_format.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/timestamp.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/timestamp.pb.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/timestamp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/timestamp.proto -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/type.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/type.pb.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/type.proto -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/unknown_field_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/unknown_field_set.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/util/field_mask_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/util/field_mask_util.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/util/json_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/util/json_util.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/util/time_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/util/time_util.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/util/type_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/util/type_resolver.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/wire_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/wire_format.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/wire_format_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/wire_format_lite.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/wire_format_lite_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/wire_format_lite_inl.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/wrappers.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/wrappers.pb.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/google/protobuf/wrappers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/google/protobuf/wrappers.proto -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv/cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv/cv.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv/cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv/cv.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv/cvaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv/cvaux.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv/cvaux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv/cvaux.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv/cvwimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv/cvwimage.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv/cxcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv/cxcore.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv/cxcore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv/cxcore.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv/cxeigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv/cxeigen.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv/cxmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv/cxmisc.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv/highgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv/highgui.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv/ml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv/ml.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/calib3d/calib3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/calib3d/calib3d.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/contrib/contrib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/contrib/contrib.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/contrib/hybridtracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/contrib/hybridtracker.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/contrib/openfabmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/contrib/openfabmap.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/contrib/retina.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/contrib/retina.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/core/affine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/core/affine.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/core/core.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/core/core_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/core/core_c.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/core/cuda_devptrs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/core/cuda_devptrs.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/core/devmem2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/core/devmem2d.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/core/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/core/eigen.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/core/gpumat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/core/gpumat.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/core/internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/core/internal.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/core/mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/core/mat.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/core/opengl_interop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/core/opengl_interop.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/core/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/core/operations.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/core/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/core/types_c.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/core/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/core/version.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/core/wimage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/core/wimage.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/features2d/features2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/features2d/features2d.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/all_indices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/all_indices.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/allocator.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/any.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/autotuned_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/autotuned_index.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/composite_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/composite_index.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/config.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/defines.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/dist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/dist.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/dummy.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/dynamic_bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/dynamic_bitset.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/flann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/flann.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/flann_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/flann_base.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/general.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/ground_truth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/ground_truth.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/hdf5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/hdf5.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/heap.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/index_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/index_testing.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/kdtree_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/kdtree_index.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/kdtree_single_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/kdtree_single_index.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/kmeans_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/kmeans_index.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/linear_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/linear_index.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/logger.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/lsh_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/lsh_index.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/lsh_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/lsh_table.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/matrix.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/miniflann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/miniflann.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/nn_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/nn_index.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/object_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/object_factory.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/params.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/random.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/result_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/result_set.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/sampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/sampling.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/saving.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/saving.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/simplex_downhill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/simplex_downhill.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/flann/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/flann/timer.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/highgui/cap_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/highgui/cap_ios.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/highgui/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/highgui/highgui.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/highgui/highgui_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/highgui/highgui_c.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/highgui/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/highgui/ios.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/imgproc/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/imgproc/imgproc.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/imgproc/imgproc_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/imgproc/imgproc_c.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/imgproc/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/imgproc/types_c.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/legacy/blobtrack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/legacy/blobtrack.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/legacy/compat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/legacy/compat.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/legacy/legacy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/legacy/legacy.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/legacy/streams.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/legacy/streams.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/ml/ml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/ml/ml.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/objdetect/objdetect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/objdetect/objdetect.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/ocl/matrix_operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/ocl/matrix_operations.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/ocl/ocl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/ocl/ocl.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/opencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/opencv.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/opencv_modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/opencv_modules.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/photo/photo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/photo/photo.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/photo/photo_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/photo/photo_c.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/stitching/detail/autocalib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/stitching/detail/autocalib.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/stitching/detail/blenders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/stitching/detail/blenders.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/stitching/detail/camera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/stitching/detail/camera.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/stitching/detail/matchers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/stitching/detail/matchers.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/stitching/detail/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/stitching/detail/util.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/stitching/detail/util_inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/stitching/detail/util_inl.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/stitching/detail/warpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/stitching/detail/warpers.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/stitching/stitcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/stitching/stitcher.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/stitching/warpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/stitching/warpers.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/superres/optical_flow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/superres/optical_flow.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/superres/superres.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/superres/superres.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/ts/gpu_perf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/ts/gpu_perf.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/ts/gpu_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/ts/gpu_test.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/ts/ts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/ts/ts.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/ts/ts_gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/ts/ts_gtest.h -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/ts/ts_perf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/ts/ts_perf.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/video/background_segm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/video/background_segm.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/video/tracking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/video/tracking.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/video/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/video/video.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/videostab/deblurring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/videostab/deblurring.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/videostab/fast_marching.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/videostab/fast_marching.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/videostab/frame_source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/videostab/frame_source.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/videostab/global_motion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/videostab/global_motion.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/videostab/inpainting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/videostab/inpainting.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/videostab/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/videostab/log.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/videostab/optical_flow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/videostab/optical_flow.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/videostab/stabilizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/videostab/stabilizer.hpp -------------------------------------------------------------------------------- /texture-view/src/main/cpp/opencv2/videostab/videostab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/cpp/opencv2/videostab/videostab.hpp -------------------------------------------------------------------------------- /texture-view/src/main/libs/armeabi-v7a/libCAFFE2_NNPACK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/libs/armeabi-v7a/libCAFFE2_NNPACK.a -------------------------------------------------------------------------------- /texture-view/src/main/libs/armeabi-v7a/libCAFFE2_PTHREADPOOL.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/libs/armeabi-v7a/libCAFFE2_PTHREADPOOL.a -------------------------------------------------------------------------------- /texture-view/src/main/libs/armeabi-v7a/libCaffe2_CPU.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/libs/armeabi-v7a/libCaffe2_CPU.a -------------------------------------------------------------------------------- /texture-view/src/main/libs/armeabi-v7a/libcpufeatures.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/libs/armeabi-v7a/libcpufeatures.a -------------------------------------------------------------------------------- /texture-view/src/main/libs/armeabi-v7a/libglog.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/libs/armeabi-v7a/libglog.so -------------------------------------------------------------------------------- /texture-view/src/main/libs/armeabi-v7a/libgnustl_shared.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/libs/armeabi-v7a/libgnustl_shared.so -------------------------------------------------------------------------------- /texture-view/src/main/libs/armeabi-v7a/libprotobuf-lite.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/libs/armeabi-v7a/libprotobuf-lite.a -------------------------------------------------------------------------------- /texture-view/src/main/libs/armeabi-v7a/libprotobuf.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/libs/armeabi-v7a/libprotobuf.a -------------------------------------------------------------------------------- /texture-view/src/main/libs/armeabi-v7a/opencv/libIlmImf.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/libs/armeabi-v7a/opencv/libIlmImf.a -------------------------------------------------------------------------------- /texture-view/src/main/libs/armeabi-v7a/opencv/liblibjasper.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/libs/armeabi-v7a/opencv/liblibjasper.a -------------------------------------------------------------------------------- /texture-view/src/main/libs/armeabi-v7a/opencv/liblibjpeg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/libs/armeabi-v7a/opencv/liblibjpeg.a -------------------------------------------------------------------------------- /texture-view/src/main/libs/armeabi-v7a/opencv/liblibpng.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/libs/armeabi-v7a/opencv/liblibpng.a -------------------------------------------------------------------------------- /texture-view/src/main/libs/armeabi-v7a/opencv/liblibtiff.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/libs/armeabi-v7a/opencv/liblibtiff.a -------------------------------------------------------------------------------- /texture-view/src/main/libs/armeabi-v7a/opencv/libopencv_core.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/libs/armeabi-v7a/opencv/libopencv_core.a -------------------------------------------------------------------------------- /texture-view/src/main/libs/armeabi-v7a/opencv/libtbb.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/libs/armeabi-v7a/opencv/libtbb.a -------------------------------------------------------------------------------- /texture-view/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /texture-view/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /texture-view/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /texture-view/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /texture-view/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /texture-view/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /texture-view/texture-view.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yge58/caffe2-opencv-ndkcamera/HEAD/texture-view/texture-view.iml --------------------------------------------------------------------------------