├── README.md ├── bin ├── cvimodel_tool ├── mat2npz ├── model_interface_tester ├── model_runner ├── multi_model_tester ├── multi_thread_tester ├── npy2mat ├── npz2mat ├── sample_bf16_fp32 ├── sample_fp32_bf16 ├── sample_gemm ├── sample_mask ├── sample_reduce_mul ├── sample_set_val_by_mask ├── sample_sigmoid_linear_interp ├── sample_upsample └── stress_tester ├── cmake ├── toolchain-aarch64-linux.cmake ├── toolchain-linux-gnueabihf.cmake ├── toolchain-linux-uclibc.cmake ├── toolchain-riscv64-linux-musl-x86_64.cmake ├── toolchain-riscv64-linux-x86_64.cmake └── toolchain.cmake ├── envs_tpu_sdk.sh ├── flatbuffers ├── bin │ └── flatc ├── include │ └── flatbuffers │ │ ├── base.h │ │ ├── code_generators.h │ │ ├── flatbuffers.h │ │ ├── flatc.h │ │ ├── flexbuffers.h │ │ ├── grpc.h │ │ ├── hash.h │ │ ├── idl.h │ │ ├── minireflect.h │ │ ├── reflection.h │ │ ├── reflection_generated.h │ │ ├── registry.h │ │ ├── stl_emulation.h │ │ └── util.h └── lib │ ├── cmake │ └── flatbuffers │ │ ├── FlatbuffersConfig.cmake │ │ ├── FlatbuffersConfigVersion.cmake │ │ ├── FlatbuffersTargets-release.cmake │ │ ├── FlatbuffersTargets.cmake │ │ ├── FlatcTargets-release.cmake │ │ └── FlatcTargets.cmake │ └── libflatbuffers.a ├── include ├── bmkernel │ ├── bm1822 │ │ ├── 1822_fp_convert.h │ │ ├── bm1822_tdma_reg.h │ │ ├── bm1822_tiu_reg.h │ │ ├── bm1822_tpu_cfg.h │ │ ├── bm_vlc_compress.h │ │ ├── bmkernel_1822.h │ │ └── compression.h │ ├── bm1880v2 │ │ ├── 1880v2_fp_convert.h │ │ ├── bm1880v2_tdma_reg.h │ │ ├── bm1880v2_tiu_reg.h │ │ ├── bm1880v2_tpu_cfg.h │ │ ├── bm_vlc_compress.h │ │ ├── bmkernel_1880v2.h │ │ ├── compression.h │ │ └── non_atomic.h │ ├── bm_kernel.h │ ├── bm_kernel_legacy.h │ ├── bm_regcpu.h │ ├── reg_bdcast.h │ ├── reg_tdma.h │ └── reg_tiu.h ├── bmruntime.h ├── bmruntime_bmkernel.h ├── cnpy.h ├── cvikernel │ ├── cv180x │ │ ├── cv180x_tdma_reg.h │ │ ├── cv180x_tiu_reg.h │ │ └── cv180x_tpu_cfg.h │ ├── cv181x │ │ ├── cv181x_tdma_reg.h │ │ ├── cv181x_tiu_reg.h │ │ └── cv181x_tpu_cfg.h │ ├── cvikernel.h │ ├── cvk_fp_convert.h │ └── cvk_vlc_compress.h ├── cvimath │ ├── cvimath.h │ ├── cvimath_internal.h │ └── test_cvikernel_util.h ├── cviruntime.h ├── cviruntime_context.h ├── cviruntime_extra.h ├── cvitpu_debug.h ├── runtime │ ├── cpu_function.hpp │ ├── neuron.hpp │ └── op_param.hpp ├── zconf.h └── zlib.h ├── lib ├── libcnpy.a ├── libcnpy.so ├── libcvikernel-static.a ├── libcvikernel.so ├── libcvimath-static.a ├── libcvimath.so ├── libcviruntime-static.a ├── libcviruntime.so ├── libz.a ├── libz.so ├── libz.so.1 └── libz.so.1.2.11 ├── opencv ├── include │ ├── opencv │ │ ├── cv.h │ │ ├── cv.hpp │ │ ├── cvaux.h │ │ ├── cvaux.hpp │ │ ├── cvwimage.h │ │ ├── cxcore.h │ │ ├── cxcore.hpp │ │ ├── cxeigen.hpp │ │ ├── cxmisc.h │ │ ├── highgui.h │ │ └── ml.h │ └── opencv2 │ │ ├── core.hpp │ │ ├── core │ │ ├── affine.hpp │ │ ├── base.hpp │ │ ├── bufferpool.hpp │ │ ├── core.hpp │ │ ├── core_c.h │ │ ├── cuda.hpp │ │ ├── cuda.inl.hpp │ │ ├── cuda │ │ │ ├── block.hpp │ │ │ ├── border_interpolate.hpp │ │ │ ├── color.hpp │ │ │ ├── common.hpp │ │ │ ├── datamov_utils.hpp │ │ │ ├── detail │ │ │ │ ├── color_detail.hpp │ │ │ │ ├── reduce.hpp │ │ │ │ ├── reduce_key_val.hpp │ │ │ │ ├── transform_detail.hpp │ │ │ │ ├── type_traits_detail.hpp │ │ │ │ └── vec_distance_detail.hpp │ │ │ ├── dynamic_smem.hpp │ │ │ ├── emulation.hpp │ │ │ ├── filters.hpp │ │ │ ├── funcattrib.hpp │ │ │ ├── functional.hpp │ │ │ ├── limits.hpp │ │ │ ├── reduce.hpp │ │ │ ├── saturate_cast.hpp │ │ │ ├── scan.hpp │ │ │ ├── simd_functions.hpp │ │ │ ├── transform.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── utility.hpp │ │ │ ├── vec_distance.hpp │ │ │ ├── vec_math.hpp │ │ │ ├── vec_traits.hpp │ │ │ ├── warp.hpp │ │ │ ├── warp_reduce.hpp │ │ │ └── warp_shuffle.hpp │ │ ├── cuda_stream_accessor.hpp │ │ ├── cuda_types.hpp │ │ ├── cvdef.h │ │ ├── cvstd.hpp │ │ ├── cvstd.inl.hpp │ │ ├── directx.hpp │ │ ├── eigen.hpp │ │ ├── fast_math.hpp │ │ ├── hal │ │ │ ├── hal.hpp │ │ │ ├── interface.h │ │ │ ├── intrin.hpp │ │ │ ├── intrin_cpp.hpp │ │ │ ├── intrin_neon.hpp │ │ │ └── intrin_sse.hpp │ │ ├── ippasync.hpp │ │ ├── mat.hpp │ │ ├── mat.inl.hpp │ │ ├── matx.hpp │ │ ├── neon_utils.hpp │ │ ├── ocl.hpp │ │ ├── ocl_genbase.hpp │ │ ├── opengl.hpp │ │ ├── operations.hpp │ │ ├── optim.hpp │ │ ├── ovx.hpp │ │ ├── persistence.hpp │ │ ├── private.cuda.hpp │ │ ├── private.hpp │ │ ├── ptr.inl.hpp │ │ ├── saturate.hpp │ │ ├── sse_utils.hpp │ │ ├── traits.hpp │ │ ├── types.hpp │ │ ├── types_c.h │ │ ├── utility.hpp │ │ ├── va_intel.hpp │ │ ├── version.hpp │ │ └── wimage.hpp │ │ ├── cvconfig.h │ │ ├── imgcodecs.hpp │ │ ├── imgcodecs │ │ ├── imgcodecs.hpp │ │ ├── imgcodecs_c.h │ │ └── ios.h │ │ ├── imgproc.hpp │ │ ├── imgproc │ │ ├── detail │ │ │ └── distortion_model.hpp │ │ ├── hal │ │ │ ├── hal.hpp │ │ │ └── interface.h │ │ ├── imgproc.hpp │ │ ├── imgproc_c.h │ │ └── types_c.h │ │ ├── opencv.hpp │ │ └── opencv_modules.hpp ├── lib │ ├── libopencv_core.so │ ├── libopencv_core.so.3.2 │ ├── libopencv_core.so.3.2.0 │ ├── libopencv_imgcodecs.so │ ├── libopencv_imgcodecs.so.3.2 │ ├── libopencv_imgcodecs.so.3.2.0 │ ├── libopencv_imgproc.so │ ├── libopencv_imgproc.so.3.2 │ ├── libopencv_imgproc.so.3.2.0 │ └── pkgconfig │ │ └── opencv.pc └── share │ └── OpenCV │ ├── OpenCVConfig-version.cmake │ ├── OpenCVConfig.cmake │ ├── OpenCVModules-release.cmake │ ├── OpenCVModules.cmake │ ├── haarcascades │ ├── haarcascade_eye.xml │ ├── haarcascade_eye_tree_eyeglasses.xml │ ├── haarcascade_frontalcatface.xml │ ├── haarcascade_frontalcatface_extended.xml │ ├── haarcascade_frontalface_alt.xml │ ├── haarcascade_frontalface_alt2.xml │ ├── haarcascade_frontalface_alt_tree.xml │ ├── haarcascade_frontalface_default.xml │ ├── haarcascade_fullbody.xml │ ├── haarcascade_lefteye_2splits.xml │ ├── haarcascade_licence_plate_rus_16stages.xml │ ├── haarcascade_lowerbody.xml │ ├── haarcascade_profileface.xml │ ├── haarcascade_righteye_2splits.xml │ ├── haarcascade_russian_plate_number.xml │ ├── haarcascade_smile.xml │ └── haarcascade_upperbody.xml │ └── lbpcascades │ ├── lbpcascade_frontalcatface.xml │ ├── lbpcascade_frontalface.xml │ ├── lbpcascade_profileface.xml │ └── lbpcascade_silverware.xml ├── regression_models.sh ├── regression_models_e2e.sh ├── regression_samples.sh ├── samples ├── bin │ ├── cvi_sample_classifier │ ├── cvi_sample_classifier_bf16 │ ├── cvi_sample_classifier_fused_preprocess │ ├── cvi_sample_classifier_multi_batch │ ├── cvi_sample_model_info │ └── cvi_sample_model_runner ├── cvimath │ └── toolchain-aarch64-linux.cmake ├── data │ ├── cat.jpg │ └── synset_words.txt ├── run_classifier.sh ├── run_classifier_bf16.sh ├── run_classifier_fused_preprocess.sh ├── run_classifier_multi_batch.sh └── samples_extra │ ├── bin │ ├── cvi_sample_alphapose_fused_preprocess │ ├── cvi_sample_detector_ppyoloem_fused_preprocess │ ├── cvi_sample_detector_yolo_v3_fused_preprocess │ ├── cvi_sample_detector_yolo_v5_fused_preprocess │ ├── cvi_sample_detector_yolov5-face_fused_preprocess │ ├── cvi_sample_detector_yolov8n_fused_preprocess │ ├── cvi_sample_detector_yolox_s │ └── cvi_sample_fd_fr_fused_preprocess │ ├── data │ ├── cat.jpg │ ├── dog.jpg │ ├── obama1.jpg │ ├── obama2.jpg │ ├── obama3.jpg │ ├── pose_demo_2.jpg │ ├── synset_words.txt │ ├── trump1.jpg │ ├── trump2.jpg │ └── trump3.jpg │ ├── run_alphapose_fused_preprocess.sh │ ├── run_detector_ppyoloem_fused_preprocess.sh │ ├── run_detector_yolov3_fused_preprocess.sh │ ├── run_detector_yolov5_fused_preprocess.sh │ ├── run_detector_yolox_s.sh │ └── run_insightface_fused_preprocess.sh └── share ├── man └── man3 │ └── zlib.3 └── pkgconfig └── zlib.pc /README.md: -------------------------------------------------------------------------------- 1 | # tpu-sdk 2 | TPU SDK 3 | -------------------------------------------------------------------------------- /bin/cvimodel_tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/bin/cvimodel_tool -------------------------------------------------------------------------------- /bin/mat2npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/bin/mat2npz -------------------------------------------------------------------------------- /bin/model_interface_tester: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/bin/model_interface_tester -------------------------------------------------------------------------------- /bin/model_runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/bin/model_runner -------------------------------------------------------------------------------- /bin/multi_model_tester: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/bin/multi_model_tester -------------------------------------------------------------------------------- /bin/multi_thread_tester: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/bin/multi_thread_tester -------------------------------------------------------------------------------- /bin/npy2mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/bin/npy2mat -------------------------------------------------------------------------------- /bin/npz2mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/bin/npz2mat -------------------------------------------------------------------------------- /bin/sample_bf16_fp32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/bin/sample_bf16_fp32 -------------------------------------------------------------------------------- /bin/sample_fp32_bf16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/bin/sample_fp32_bf16 -------------------------------------------------------------------------------- /bin/sample_gemm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/bin/sample_gemm -------------------------------------------------------------------------------- /bin/sample_mask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/bin/sample_mask -------------------------------------------------------------------------------- /bin/sample_reduce_mul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/bin/sample_reduce_mul -------------------------------------------------------------------------------- /bin/sample_set_val_by_mask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/bin/sample_set_val_by_mask -------------------------------------------------------------------------------- /bin/sample_sigmoid_linear_interp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/bin/sample_sigmoid_linear_interp -------------------------------------------------------------------------------- /bin/sample_upsample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/bin/sample_upsample -------------------------------------------------------------------------------- /bin/stress_tester: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/bin/stress_tester -------------------------------------------------------------------------------- /cmake/toolchain-aarch64-linux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/cmake/toolchain-aarch64-linux.cmake -------------------------------------------------------------------------------- /cmake/toolchain-linux-gnueabihf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/cmake/toolchain-linux-gnueabihf.cmake -------------------------------------------------------------------------------- /cmake/toolchain-linux-uclibc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/cmake/toolchain-linux-uclibc.cmake -------------------------------------------------------------------------------- /cmake/toolchain-riscv64-linux-musl-x86_64.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/cmake/toolchain-riscv64-linux-musl-x86_64.cmake -------------------------------------------------------------------------------- /cmake/toolchain-riscv64-linux-x86_64.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/cmake/toolchain-riscv64-linux-x86_64.cmake -------------------------------------------------------------------------------- /cmake/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/cmake/toolchain.cmake -------------------------------------------------------------------------------- /envs_tpu_sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/envs_tpu_sdk.sh -------------------------------------------------------------------------------- /flatbuffers/bin/flatc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/flatbuffers/bin/flatc -------------------------------------------------------------------------------- /flatbuffers/include/flatbuffers/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/flatbuffers/include/flatbuffers/base.h -------------------------------------------------------------------------------- /flatbuffers/include/flatbuffers/code_generators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/flatbuffers/include/flatbuffers/code_generators.h -------------------------------------------------------------------------------- /flatbuffers/include/flatbuffers/flatbuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/flatbuffers/include/flatbuffers/flatbuffers.h -------------------------------------------------------------------------------- /flatbuffers/include/flatbuffers/flatc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/flatbuffers/include/flatbuffers/flatc.h -------------------------------------------------------------------------------- /flatbuffers/include/flatbuffers/flexbuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/flatbuffers/include/flatbuffers/flexbuffers.h -------------------------------------------------------------------------------- /flatbuffers/include/flatbuffers/grpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/flatbuffers/include/flatbuffers/grpc.h -------------------------------------------------------------------------------- /flatbuffers/include/flatbuffers/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/flatbuffers/include/flatbuffers/hash.h -------------------------------------------------------------------------------- /flatbuffers/include/flatbuffers/idl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/flatbuffers/include/flatbuffers/idl.h -------------------------------------------------------------------------------- /flatbuffers/include/flatbuffers/minireflect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/flatbuffers/include/flatbuffers/minireflect.h -------------------------------------------------------------------------------- /flatbuffers/include/flatbuffers/reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/flatbuffers/include/flatbuffers/reflection.h -------------------------------------------------------------------------------- /flatbuffers/include/flatbuffers/reflection_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/flatbuffers/include/flatbuffers/reflection_generated.h -------------------------------------------------------------------------------- /flatbuffers/include/flatbuffers/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/flatbuffers/include/flatbuffers/registry.h -------------------------------------------------------------------------------- /flatbuffers/include/flatbuffers/stl_emulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/flatbuffers/include/flatbuffers/stl_emulation.h -------------------------------------------------------------------------------- /flatbuffers/include/flatbuffers/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/flatbuffers/include/flatbuffers/util.h -------------------------------------------------------------------------------- /flatbuffers/lib/cmake/flatbuffers/FlatbuffersConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/flatbuffers/lib/cmake/flatbuffers/FlatbuffersConfig.cmake -------------------------------------------------------------------------------- /flatbuffers/lib/cmake/flatbuffers/FlatbuffersConfigVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/flatbuffers/lib/cmake/flatbuffers/FlatbuffersConfigVersion.cmake -------------------------------------------------------------------------------- /flatbuffers/lib/cmake/flatbuffers/FlatbuffersTargets-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/flatbuffers/lib/cmake/flatbuffers/FlatbuffersTargets-release.cmake -------------------------------------------------------------------------------- /flatbuffers/lib/cmake/flatbuffers/FlatbuffersTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/flatbuffers/lib/cmake/flatbuffers/FlatbuffersTargets.cmake -------------------------------------------------------------------------------- /flatbuffers/lib/cmake/flatbuffers/FlatcTargets-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/flatbuffers/lib/cmake/flatbuffers/FlatcTargets-release.cmake -------------------------------------------------------------------------------- /flatbuffers/lib/cmake/flatbuffers/FlatcTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/flatbuffers/lib/cmake/flatbuffers/FlatcTargets.cmake -------------------------------------------------------------------------------- /flatbuffers/lib/libflatbuffers.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/flatbuffers/lib/libflatbuffers.a -------------------------------------------------------------------------------- /include/bmkernel/bm1822/1822_fp_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmkernel/bm1822/1822_fp_convert.h -------------------------------------------------------------------------------- /include/bmkernel/bm1822/bm1822_tdma_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmkernel/bm1822/bm1822_tdma_reg.h -------------------------------------------------------------------------------- /include/bmkernel/bm1822/bm1822_tiu_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmkernel/bm1822/bm1822_tiu_reg.h -------------------------------------------------------------------------------- /include/bmkernel/bm1822/bm1822_tpu_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmkernel/bm1822/bm1822_tpu_cfg.h -------------------------------------------------------------------------------- /include/bmkernel/bm1822/bm_vlc_compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmkernel/bm1822/bm_vlc_compress.h -------------------------------------------------------------------------------- /include/bmkernel/bm1822/bmkernel_1822.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmkernel/bm1822/bmkernel_1822.h -------------------------------------------------------------------------------- /include/bmkernel/bm1822/compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmkernel/bm1822/compression.h -------------------------------------------------------------------------------- /include/bmkernel/bm1880v2/1880v2_fp_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmkernel/bm1880v2/1880v2_fp_convert.h -------------------------------------------------------------------------------- /include/bmkernel/bm1880v2/bm1880v2_tdma_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmkernel/bm1880v2/bm1880v2_tdma_reg.h -------------------------------------------------------------------------------- /include/bmkernel/bm1880v2/bm1880v2_tiu_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmkernel/bm1880v2/bm1880v2_tiu_reg.h -------------------------------------------------------------------------------- /include/bmkernel/bm1880v2/bm1880v2_tpu_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmkernel/bm1880v2/bm1880v2_tpu_cfg.h -------------------------------------------------------------------------------- /include/bmkernel/bm1880v2/bm_vlc_compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmkernel/bm1880v2/bm_vlc_compress.h -------------------------------------------------------------------------------- /include/bmkernel/bm1880v2/bmkernel_1880v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmkernel/bm1880v2/bmkernel_1880v2.h -------------------------------------------------------------------------------- /include/bmkernel/bm1880v2/compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmkernel/bm1880v2/compression.h -------------------------------------------------------------------------------- /include/bmkernel/bm1880v2/non_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmkernel/bm1880v2/non_atomic.h -------------------------------------------------------------------------------- /include/bmkernel/bm_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmkernel/bm_kernel.h -------------------------------------------------------------------------------- /include/bmkernel/bm_kernel_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmkernel/bm_kernel_legacy.h -------------------------------------------------------------------------------- /include/bmkernel/bm_regcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmkernel/bm_regcpu.h -------------------------------------------------------------------------------- /include/bmkernel/reg_bdcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmkernel/reg_bdcast.h -------------------------------------------------------------------------------- /include/bmkernel/reg_tdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmkernel/reg_tdma.h -------------------------------------------------------------------------------- /include/bmkernel/reg_tiu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmkernel/reg_tiu.h -------------------------------------------------------------------------------- /include/bmruntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmruntime.h -------------------------------------------------------------------------------- /include/bmruntime_bmkernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/bmruntime_bmkernel.h -------------------------------------------------------------------------------- /include/cnpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/cnpy.h -------------------------------------------------------------------------------- /include/cvikernel/cv180x/cv180x_tdma_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/cvikernel/cv180x/cv180x_tdma_reg.h -------------------------------------------------------------------------------- /include/cvikernel/cv180x/cv180x_tiu_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/cvikernel/cv180x/cv180x_tiu_reg.h -------------------------------------------------------------------------------- /include/cvikernel/cv180x/cv180x_tpu_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/cvikernel/cv180x/cv180x_tpu_cfg.h -------------------------------------------------------------------------------- /include/cvikernel/cv181x/cv181x_tdma_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/cvikernel/cv181x/cv181x_tdma_reg.h -------------------------------------------------------------------------------- /include/cvikernel/cv181x/cv181x_tiu_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/cvikernel/cv181x/cv181x_tiu_reg.h -------------------------------------------------------------------------------- /include/cvikernel/cv181x/cv181x_tpu_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/cvikernel/cv181x/cv181x_tpu_cfg.h -------------------------------------------------------------------------------- /include/cvikernel/cvikernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/cvikernel/cvikernel.h -------------------------------------------------------------------------------- /include/cvikernel/cvk_fp_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/cvikernel/cvk_fp_convert.h -------------------------------------------------------------------------------- /include/cvikernel/cvk_vlc_compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/cvikernel/cvk_vlc_compress.h -------------------------------------------------------------------------------- /include/cvimath/cvimath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/cvimath/cvimath.h -------------------------------------------------------------------------------- /include/cvimath/cvimath_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/cvimath/cvimath_internal.h -------------------------------------------------------------------------------- /include/cvimath/test_cvikernel_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/cvimath/test_cvikernel_util.h -------------------------------------------------------------------------------- /include/cviruntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/cviruntime.h -------------------------------------------------------------------------------- /include/cviruntime_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/cviruntime_context.h -------------------------------------------------------------------------------- /include/cviruntime_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/cviruntime_extra.h -------------------------------------------------------------------------------- /include/cvitpu_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/cvitpu_debug.h -------------------------------------------------------------------------------- /include/runtime/cpu_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/runtime/cpu_function.hpp -------------------------------------------------------------------------------- /include/runtime/neuron.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/runtime/neuron.hpp -------------------------------------------------------------------------------- /include/runtime/op_param.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/runtime/op_param.hpp -------------------------------------------------------------------------------- /include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/zconf.h -------------------------------------------------------------------------------- /include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/include/zlib.h -------------------------------------------------------------------------------- /lib/libcnpy.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/lib/libcnpy.a -------------------------------------------------------------------------------- /lib/libcnpy.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/lib/libcnpy.so -------------------------------------------------------------------------------- /lib/libcvikernel-static.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/lib/libcvikernel-static.a -------------------------------------------------------------------------------- /lib/libcvikernel.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/lib/libcvikernel.so -------------------------------------------------------------------------------- /lib/libcvimath-static.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/lib/libcvimath-static.a -------------------------------------------------------------------------------- /lib/libcvimath.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/lib/libcvimath.so -------------------------------------------------------------------------------- /lib/libcviruntime-static.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/lib/libcviruntime-static.a -------------------------------------------------------------------------------- /lib/libcviruntime.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/lib/libcviruntime.so -------------------------------------------------------------------------------- /lib/libz.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/lib/libz.a -------------------------------------------------------------------------------- /lib/libz.so: -------------------------------------------------------------------------------- 1 | libz.so.1 -------------------------------------------------------------------------------- /lib/libz.so.1: -------------------------------------------------------------------------------- 1 | libz.so.1.2.11 -------------------------------------------------------------------------------- /lib/libz.so.1.2.11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/lib/libz.so.1.2.11 -------------------------------------------------------------------------------- /opencv/include/opencv/cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv/cv.h -------------------------------------------------------------------------------- /opencv/include/opencv/cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv/cv.hpp -------------------------------------------------------------------------------- /opencv/include/opencv/cvaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv/cvaux.h -------------------------------------------------------------------------------- /opencv/include/opencv/cvaux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv/cvaux.hpp -------------------------------------------------------------------------------- /opencv/include/opencv/cvwimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv/cvwimage.h -------------------------------------------------------------------------------- /opencv/include/opencv/cxcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv/cxcore.h -------------------------------------------------------------------------------- /opencv/include/opencv/cxcore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv/cxcore.hpp -------------------------------------------------------------------------------- /opencv/include/opencv/cxeigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv/cxeigen.hpp -------------------------------------------------------------------------------- /opencv/include/opencv/cxmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv/cxmisc.h -------------------------------------------------------------------------------- /opencv/include/opencv/highgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv/highgui.h -------------------------------------------------------------------------------- /opencv/include/opencv/ml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv/ml.h -------------------------------------------------------------------------------- /opencv/include/opencv2/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/affine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/affine.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/base.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/bufferpool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/bufferpool.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/core.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/core_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/core_c.h -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda.inl.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/block.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/border_interpolate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/border_interpolate.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/color.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/common.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/datamov_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/datamov_utils.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/detail/color_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/detail/color_detail.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/detail/reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/detail/reduce.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/detail/reduce_key_val.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/detail/reduce_key_val.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/detail/transform_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/detail/transform_detail.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/detail/type_traits_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/detail/type_traits_detail.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/detail/vec_distance_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/detail/vec_distance_detail.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/dynamic_smem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/dynamic_smem.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/emulation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/emulation.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/filters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/filters.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/funcattrib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/funcattrib.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/functional.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/limits.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/reduce.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/saturate_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/saturate_cast.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/scan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/scan.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/simd_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/simd_functions.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/transform.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/type_traits.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/utility.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/vec_distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/vec_distance.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/vec_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/vec_math.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/vec_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/vec_traits.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/warp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/warp.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/warp_reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/warp_reduce.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda/warp_shuffle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda/warp_shuffle.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda_stream_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda_stream_accessor.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cuda_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cuda_types.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cvdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cvdef.h -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cvstd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cvstd.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/cvstd.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/cvstd.inl.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/directx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/directx.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/eigen.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/fast_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/fast_math.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/hal/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/hal/hal.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/hal/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/hal/interface.h -------------------------------------------------------------------------------- /opencv/include/opencv2/core/hal/intrin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/hal/intrin.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/hal/intrin_cpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/hal/intrin_cpp.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/hal/intrin_neon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/hal/intrin_neon.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/hal/intrin_sse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/hal/intrin_sse.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/ippasync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/ippasync.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/mat.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/mat.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/mat.inl.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/matx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/matx.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/neon_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/neon_utils.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/ocl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/ocl.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/ocl_genbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/ocl_genbase.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/opengl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/opengl.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/operations.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/optim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/optim.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/ovx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/ovx.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/persistence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/persistence.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/private.cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/private.cuda.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/private.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/ptr.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/ptr.inl.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/saturate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/saturate.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/sse_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/sse_utils.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/traits.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/types.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/types_c.h -------------------------------------------------------------------------------- /opencv/include/opencv2/core/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/utility.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/va_intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/va_intel.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/version.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/core/wimage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/core/wimage.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/cvconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/cvconfig.h -------------------------------------------------------------------------------- /opencv/include/opencv2/imgcodecs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/imgcodecs.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/imgcodecs/imgcodecs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/imgcodecs/imgcodecs.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/imgcodecs/imgcodecs_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/imgcodecs/imgcodecs_c.h -------------------------------------------------------------------------------- /opencv/include/opencv2/imgcodecs/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/imgcodecs/ios.h -------------------------------------------------------------------------------- /opencv/include/opencv2/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/imgproc.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/imgproc/detail/distortion_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/imgproc/detail/distortion_model.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/imgproc/hal/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/imgproc/hal/hal.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/imgproc/hal/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/imgproc/hal/interface.h -------------------------------------------------------------------------------- /opencv/include/opencv2/imgproc/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/imgproc/imgproc.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/imgproc/imgproc_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/imgproc/imgproc_c.h -------------------------------------------------------------------------------- /opencv/include/opencv2/imgproc/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/imgproc/types_c.h -------------------------------------------------------------------------------- /opencv/include/opencv2/opencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/opencv.hpp -------------------------------------------------------------------------------- /opencv/include/opencv2/opencv_modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/include/opencv2/opencv_modules.hpp -------------------------------------------------------------------------------- /opencv/lib/libopencv_core.so: -------------------------------------------------------------------------------- 1 | libopencv_core.so.3.2 -------------------------------------------------------------------------------- /opencv/lib/libopencv_core.so.3.2: -------------------------------------------------------------------------------- 1 | libopencv_core.so.3.2.0 -------------------------------------------------------------------------------- /opencv/lib/libopencv_core.so.3.2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/lib/libopencv_core.so.3.2.0 -------------------------------------------------------------------------------- /opencv/lib/libopencv_imgcodecs.so: -------------------------------------------------------------------------------- 1 | libopencv_imgcodecs.so.3.2 -------------------------------------------------------------------------------- /opencv/lib/libopencv_imgcodecs.so.3.2: -------------------------------------------------------------------------------- 1 | libopencv_imgcodecs.so.3.2.0 -------------------------------------------------------------------------------- /opencv/lib/libopencv_imgcodecs.so.3.2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/lib/libopencv_imgcodecs.so.3.2.0 -------------------------------------------------------------------------------- /opencv/lib/libopencv_imgproc.so: -------------------------------------------------------------------------------- 1 | libopencv_imgproc.so.3.2 -------------------------------------------------------------------------------- /opencv/lib/libopencv_imgproc.so.3.2: -------------------------------------------------------------------------------- 1 | libopencv_imgproc.so.3.2.0 -------------------------------------------------------------------------------- /opencv/lib/libopencv_imgproc.so.3.2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/lib/libopencv_imgproc.so.3.2.0 -------------------------------------------------------------------------------- /opencv/lib/pkgconfig/opencv.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/lib/pkgconfig/opencv.pc -------------------------------------------------------------------------------- /opencv/share/OpenCV/OpenCVConfig-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/OpenCVConfig-version.cmake -------------------------------------------------------------------------------- /opencv/share/OpenCV/OpenCVConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/OpenCVConfig.cmake -------------------------------------------------------------------------------- /opencv/share/OpenCV/OpenCVModules-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/OpenCVModules-release.cmake -------------------------------------------------------------------------------- /opencv/share/OpenCV/OpenCVModules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/OpenCVModules.cmake -------------------------------------------------------------------------------- /opencv/share/OpenCV/haarcascades/haarcascade_eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/haarcascades/haarcascade_eye.xml -------------------------------------------------------------------------------- /opencv/share/OpenCV/haarcascades/haarcascade_eye_tree_eyeglasses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/haarcascades/haarcascade_eye_tree_eyeglasses.xml -------------------------------------------------------------------------------- /opencv/share/OpenCV/haarcascades/haarcascade_frontalcatface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/haarcascades/haarcascade_frontalcatface.xml -------------------------------------------------------------------------------- /opencv/share/OpenCV/haarcascades/haarcascade_frontalcatface_extended.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/haarcascades/haarcascade_frontalcatface_extended.xml -------------------------------------------------------------------------------- /opencv/share/OpenCV/haarcascades/haarcascade_frontalface_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/haarcascades/haarcascade_frontalface_alt.xml -------------------------------------------------------------------------------- /opencv/share/OpenCV/haarcascades/haarcascade_frontalface_alt2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/haarcascades/haarcascade_frontalface_alt2.xml -------------------------------------------------------------------------------- /opencv/share/OpenCV/haarcascades/haarcascade_frontalface_alt_tree.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/haarcascades/haarcascade_frontalface_alt_tree.xml -------------------------------------------------------------------------------- /opencv/share/OpenCV/haarcascades/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/haarcascades/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /opencv/share/OpenCV/haarcascades/haarcascade_fullbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/haarcascades/haarcascade_fullbody.xml -------------------------------------------------------------------------------- /opencv/share/OpenCV/haarcascades/haarcascade_lefteye_2splits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/haarcascades/haarcascade_lefteye_2splits.xml -------------------------------------------------------------------------------- /opencv/share/OpenCV/haarcascades/haarcascade_licence_plate_rus_16stages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/haarcascades/haarcascade_licence_plate_rus_16stages.xml -------------------------------------------------------------------------------- /opencv/share/OpenCV/haarcascades/haarcascade_lowerbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/haarcascades/haarcascade_lowerbody.xml -------------------------------------------------------------------------------- /opencv/share/OpenCV/haarcascades/haarcascade_profileface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/haarcascades/haarcascade_profileface.xml -------------------------------------------------------------------------------- /opencv/share/OpenCV/haarcascades/haarcascade_righteye_2splits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/haarcascades/haarcascade_righteye_2splits.xml -------------------------------------------------------------------------------- /opencv/share/OpenCV/haarcascades/haarcascade_russian_plate_number.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/haarcascades/haarcascade_russian_plate_number.xml -------------------------------------------------------------------------------- /opencv/share/OpenCV/haarcascades/haarcascade_smile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/haarcascades/haarcascade_smile.xml -------------------------------------------------------------------------------- /opencv/share/OpenCV/haarcascades/haarcascade_upperbody.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/haarcascades/haarcascade_upperbody.xml -------------------------------------------------------------------------------- /opencv/share/OpenCV/lbpcascades/lbpcascade_frontalcatface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/lbpcascades/lbpcascade_frontalcatface.xml -------------------------------------------------------------------------------- /opencv/share/OpenCV/lbpcascades/lbpcascade_frontalface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/lbpcascades/lbpcascade_frontalface.xml -------------------------------------------------------------------------------- /opencv/share/OpenCV/lbpcascades/lbpcascade_profileface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/lbpcascades/lbpcascade_profileface.xml -------------------------------------------------------------------------------- /opencv/share/OpenCV/lbpcascades/lbpcascade_silverware.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/opencv/share/OpenCV/lbpcascades/lbpcascade_silverware.xml -------------------------------------------------------------------------------- /regression_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/regression_models.sh -------------------------------------------------------------------------------- /regression_models_e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/regression_models_e2e.sh -------------------------------------------------------------------------------- /regression_samples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/regression_samples.sh -------------------------------------------------------------------------------- /samples/bin/cvi_sample_classifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/bin/cvi_sample_classifier -------------------------------------------------------------------------------- /samples/bin/cvi_sample_classifier_bf16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/bin/cvi_sample_classifier_bf16 -------------------------------------------------------------------------------- /samples/bin/cvi_sample_classifier_fused_preprocess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/bin/cvi_sample_classifier_fused_preprocess -------------------------------------------------------------------------------- /samples/bin/cvi_sample_classifier_multi_batch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/bin/cvi_sample_classifier_multi_batch -------------------------------------------------------------------------------- /samples/bin/cvi_sample_model_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/bin/cvi_sample_model_info -------------------------------------------------------------------------------- /samples/bin/cvi_sample_model_runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/bin/cvi_sample_model_runner -------------------------------------------------------------------------------- /samples/cvimath/toolchain-aarch64-linux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/cvimath/toolchain-aarch64-linux.cmake -------------------------------------------------------------------------------- /samples/data/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/data/cat.jpg -------------------------------------------------------------------------------- /samples/data/synset_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/data/synset_words.txt -------------------------------------------------------------------------------- /samples/run_classifier.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/run_classifier.sh -------------------------------------------------------------------------------- /samples/run_classifier_bf16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/run_classifier_bf16.sh -------------------------------------------------------------------------------- /samples/run_classifier_fused_preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/run_classifier_fused_preprocess.sh -------------------------------------------------------------------------------- /samples/run_classifier_multi_batch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/run_classifier_multi_batch.sh -------------------------------------------------------------------------------- /samples/samples_extra/bin/cvi_sample_alphapose_fused_preprocess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/bin/cvi_sample_alphapose_fused_preprocess -------------------------------------------------------------------------------- /samples/samples_extra/bin/cvi_sample_detector_ppyoloem_fused_preprocess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/bin/cvi_sample_detector_ppyoloem_fused_preprocess -------------------------------------------------------------------------------- /samples/samples_extra/bin/cvi_sample_detector_yolo_v3_fused_preprocess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/bin/cvi_sample_detector_yolo_v3_fused_preprocess -------------------------------------------------------------------------------- /samples/samples_extra/bin/cvi_sample_detector_yolo_v5_fused_preprocess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/bin/cvi_sample_detector_yolo_v5_fused_preprocess -------------------------------------------------------------------------------- /samples/samples_extra/bin/cvi_sample_detector_yolov5-face_fused_preprocess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/bin/cvi_sample_detector_yolov5-face_fused_preprocess -------------------------------------------------------------------------------- /samples/samples_extra/bin/cvi_sample_detector_yolov8n_fused_preprocess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/bin/cvi_sample_detector_yolov8n_fused_preprocess -------------------------------------------------------------------------------- /samples/samples_extra/bin/cvi_sample_detector_yolox_s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/bin/cvi_sample_detector_yolox_s -------------------------------------------------------------------------------- /samples/samples_extra/bin/cvi_sample_fd_fr_fused_preprocess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/bin/cvi_sample_fd_fr_fused_preprocess -------------------------------------------------------------------------------- /samples/samples_extra/data/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/data/cat.jpg -------------------------------------------------------------------------------- /samples/samples_extra/data/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/data/dog.jpg -------------------------------------------------------------------------------- /samples/samples_extra/data/obama1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/data/obama1.jpg -------------------------------------------------------------------------------- /samples/samples_extra/data/obama2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/data/obama2.jpg -------------------------------------------------------------------------------- /samples/samples_extra/data/obama3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/data/obama3.jpg -------------------------------------------------------------------------------- /samples/samples_extra/data/pose_demo_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/data/pose_demo_2.jpg -------------------------------------------------------------------------------- /samples/samples_extra/data/synset_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/data/synset_words.txt -------------------------------------------------------------------------------- /samples/samples_extra/data/trump1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/data/trump1.jpg -------------------------------------------------------------------------------- /samples/samples_extra/data/trump2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/data/trump2.jpg -------------------------------------------------------------------------------- /samples/samples_extra/data/trump3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/data/trump3.jpg -------------------------------------------------------------------------------- /samples/samples_extra/run_alphapose_fused_preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/run_alphapose_fused_preprocess.sh -------------------------------------------------------------------------------- /samples/samples_extra/run_detector_ppyoloem_fused_preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/run_detector_ppyoloem_fused_preprocess.sh -------------------------------------------------------------------------------- /samples/samples_extra/run_detector_yolov3_fused_preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/run_detector_yolov3_fused_preprocess.sh -------------------------------------------------------------------------------- /samples/samples_extra/run_detector_yolov5_fused_preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/run_detector_yolov5_fused_preprocess.sh -------------------------------------------------------------------------------- /samples/samples_extra/run_detector_yolox_s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/run_detector_yolox_s.sh -------------------------------------------------------------------------------- /samples/samples_extra/run_insightface_fused_preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/samples/samples_extra/run_insightface_fused_preprocess.sh -------------------------------------------------------------------------------- /share/man/man3/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/share/man/man3/zlib.3 -------------------------------------------------------------------------------- /share/pkgconfig/zlib.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milkv-duo/tpu-sdk-cv180x/HEAD/share/pkgconfig/zlib.pc --------------------------------------------------------------------------------