├── .clang-format ├── .clang-tidy ├── .gitignore ├── .pre-commit-config.yaml ├── Doc ├── LiteKitCoreFAQ.md ├── LiteKitCore接入文档(for Java API).md ├── LiteKitCore接入文档(for Native C++ API on Android).md ├── LiteKitCore接入文档(for Native C++ API on iOS).md ├── LiteKitCore接入文档(for Objective-C API).md ├── LiteKitCore接口文档(for Java API).md ├── LiteKitCore接口文档(for Native C++ API).md ├── LiteKitCore接口文档(for Objective-C API).md ├── LiteKitFAQ.md ├── LiteKit接口文档_人像分割.md ├── LiteKit接口文档_手势识别.md ├── LiteKit接口文档_视频超分.md └── Resources │ ├── 1_1.png │ ├── 1_2.png │ ├── 1_3.png │ ├── 1_4.png │ ├── 1_5.gif │ ├── 1_6.gif │ ├── 1_7.png │ ├── 1_7_2.png │ ├── 1_8.png │ ├── 1_9.png │ ├── 21_1.png │ ├── 2_1.png │ ├── 2_2.png │ ├── 2_3.png │ ├── 2_4.png │ ├── 3_1.png │ ├── 3_2.png │ ├── 3_3.png │ ├── 4_1.png │ ├── 4_2.png │ ├── 4_3.png │ ├── 4_4.png │ ├── 4_5.png │ └── 4_6.png ├── LICENSE ├── LiteKitCore ├── LiteKitCore │ ├── Android │ │ ├── README.md │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── litekitcore │ │ │ ├── build.gradle │ │ │ ├── consumer-rules.pro │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── include │ │ │ │ │ ├── common_log.h │ │ │ │ │ ├── litekit_inference_api.h │ │ │ │ │ ├── litekit_init.h │ │ │ │ │ ├── litekit_input.h │ │ │ │ │ ├── litekit_output.h │ │ │ │ │ ├── litekit_release.h │ │ │ │ │ ├── litekit_run.h │ │ │ │ │ └── litekit_tensor.h │ │ │ │ └── src │ │ │ │ │ ├── dynamic_register_native_methods.cpp │ │ │ │ │ ├── litekit_init.cpp │ │ │ │ │ ├── litekit_input.cpp │ │ │ │ │ ├── litekit_output.cpp │ │ │ │ │ ├── litekit_release.cpp │ │ │ │ │ ├── litekit_run.cpp │ │ │ │ │ └── litekit_tensor.cpp │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── baidu │ │ │ │ └── litekitcore │ │ │ │ ├── LiteKitBaseMachine.java │ │ │ │ ├── LiteKitData.java │ │ │ │ ├── LiteKitInferenceEngineConfig.java │ │ │ │ ├── LiteKitMachineConfig.java │ │ │ │ ├── LiteKitMachineService.java │ │ │ │ ├── LiteKitPaddleConfig.java │ │ │ │ ├── LiteKitPaddleLiteConfig.java │ │ │ │ ├── LiteKitPaddleLiteMachine.java │ │ │ │ ├── LiteKitTensor.java │ │ │ │ └── LiteKitTensorShape.java │ │ └── settings.gradle │ ├── C++ │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── build-ios │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── product_build.sh │ │ │ └── tools │ │ │ │ └── iOS.cmake │ │ ├── build_android.sh │ │ └── src │ │ │ └── main │ │ │ └── cpp │ │ │ └── litekit_framework │ │ │ ├── CMakeLists.txt │ │ │ ├── base_machine_predictor.h │ │ │ ├── common_log.cpp │ │ │ ├── common_log.h │ │ │ ├── litekit_convertor.cpp │ │ │ ├── litekit_convertor.h │ │ │ ├── litekit_filetools.cpp │ │ │ ├── litekit_filetools.h │ │ │ ├── litekit_inference_api.cpp │ │ │ ├── litekit_inference_api.h │ │ │ ├── paddle_gpu │ │ │ ├── paddle_gpu_machine_predictor.cpp │ │ │ └── paddle_gpu_machine_predictor.h │ │ │ ├── paddle_gpu_header │ │ │ ├── Framework.pbobjc.h │ │ │ ├── PaddleMobileGPU.h │ │ │ ├── paddle_mobile-Swift.h │ │ │ ├── paddle_mobile.h │ │ │ └── paddle_mobile_gpu_interface.h │ │ │ ├── paddle_lite │ │ │ ├── paddle_lite_image_preprocess.cpp │ │ │ ├── paddle_lite_image_preprocess.h │ │ │ ├── paddle_lite_machine_predictor.cpp │ │ │ └── paddle_lite_machine_predictor.h │ │ │ ├── paddle_lite_header │ │ │ ├── paddle_api.h │ │ │ ├── paddle_image_preprocess.h │ │ │ ├── paddle_lite_factory_helper.h │ │ │ ├── paddle_place.h │ │ │ ├── paddle_use_kernels.h │ │ │ ├── paddle_use_ops.h │ │ │ └── paddle_use_passes.h │ │ │ └── platform_switch.h │ └── iOS │ │ ├── Dependency │ │ └── PaddleGPU │ │ │ └── include │ │ │ ├── paddle_api.h │ │ │ ├── paddle_image_preprocess.h │ │ │ ├── paddle_lite_factory_helper.h │ │ │ ├── paddle_place.h │ │ │ ├── paddle_use_kernels.h │ │ │ ├── paddle_use_ops.h │ │ │ └── paddle_use_passes.h │ │ ├── Sources │ │ ├── Backend │ │ │ ├── PaddleCPU.h │ │ │ ├── PaddleCPU.mm │ │ │ └── PaddleGPU │ │ │ │ ├── LiteKitInputMatrix.h │ │ │ │ ├── LiteKitInputMatrix.m │ │ │ │ ├── PaddleGPU+MetalResource.h │ │ │ │ ├── PaddleGPU+MetalResource.m │ │ │ │ ├── PaddleGPU.h │ │ │ │ └── PaddleGPU.m │ │ ├── Config │ │ │ ├── LiteKitInferenceEngineConfigProtocol.h │ │ │ ├── LiteKitMachineConfig.h │ │ │ ├── LiteKitMachineConfig.m │ │ │ ├── LiteKitMachineConfigProtocol.h │ │ │ ├── LiteKitPaddleConfig.h │ │ │ └── LiteKitPaddleConfig.m │ │ ├── Converter │ │ │ ├── LiteKitInputConvertor.h │ │ │ ├── LiteKitInputConvertor.m │ │ │ ├── LiteKitOutputConvertor.h │ │ │ └── LiteKitOutputConvertor.m │ │ ├── Dispatcher │ │ │ ├── LiteKitTask.h │ │ │ ├── LiteKitTask.m │ │ │ ├── LiteKitTaskDispatcherManager.h │ │ │ ├── LiteKitTaskDispatcherManager.m │ │ │ ├── LiteKitTaskQueue.h │ │ │ └── LiteKitTaskQueue.m │ │ ├── LiteKitCore.h │ │ ├── Logger │ │ │ ├── LiteKitLogger.h │ │ │ ├── LiteKitLogger.m │ │ │ └── LiteKitLoggerProtocol.h │ │ ├── Machines │ │ │ ├── BaseMachine │ │ │ │ ├── LiteKitBaseMachine.h │ │ │ │ ├── LiteKitBaseMachine.m │ │ │ │ ├── LiteKitMachine+Protected.h │ │ │ │ ├── LiteKitMachine.h │ │ │ │ └── LiteKitMachine.mm │ │ │ ├── LiteKitBaseMachine+Logger.h │ │ │ ├── LiteKitBaseMachine+Logger.m │ │ │ ├── LiteKitBaseMachine+Performancer.h │ │ │ ├── LiteKitBaseMachine+Performancer.m │ │ │ └── PaddleMachines │ │ │ │ ├── LiteKitPaddleCPUMachine.h │ │ │ │ ├── LiteKitPaddleCPUMachine.mm │ │ │ │ ├── LiteKitPaddleGPUMachine.h │ │ │ │ └── LiteKitPaddleGPUMachine.mm │ │ ├── Model │ │ │ ├── LiteKitData.h │ │ │ └── LiteKitData.m │ │ ├── Processor │ │ │ ├── LiteKitDataProcess.h │ │ │ └── LiteKitDataProcess.mm │ │ ├── Profiler │ │ │ ├── LiteKitPerformanceProfiler.h │ │ │ └── LiteKitPerformanceProfiler.m │ │ ├── Service │ │ │ ├── LiteKitMachineService+Performancer.h │ │ │ ├── LiteKitMachineService+Performancer.m │ │ │ ├── LiteKitMachineService.h │ │ │ └── LiteKitMachineService.m │ │ └── Utils │ │ │ ├── LiteKitCommonDefines.h │ │ │ ├── LiteKitConvertTool+LiteKitData2PaddleInput.h │ │ │ ├── LiteKitConvertTool+LiteKitData2PaddleInput.mm │ │ │ ├── LiteKitConvertTool+PaddleOutput2LiteKitData.h │ │ │ ├── LiteKitConvertTool+PaddleOutput2LiteKitData.m │ │ │ ├── LiteKitConvertTool.h │ │ │ ├── LiteKitConvertTool.mm │ │ │ ├── LiteKitConvertTools.h │ │ │ └── LiteKitMachineCommonHeader.h │ │ └── build-ios │ │ ├── LiteKitCore.xcodeproj │ │ └── project.pbxproj │ │ ├── Podfile │ │ └── product_build.sh └── LiteKitCoreDemo │ ├── Android │ ├── README.md │ ├── app │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── baidu │ │ │ │ └── litekitcore │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ │ ├── input_1_3_256_256 │ │ │ │ └── models │ │ │ │ │ └── mobilenet_v1_opt.nb │ │ │ ├── cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── include │ │ │ │ │ ├── common_log.h │ │ │ │ │ ├── postprocess.h │ │ │ │ │ ├── preprocess.h │ │ │ │ │ └── thirdparty │ │ │ │ │ │ └── opencv │ │ │ │ │ │ ├── opencv │ │ │ │ │ │ ├── cv.h │ │ │ │ │ │ ├── cv.hpp │ │ │ │ │ │ ├── cvaux.h │ │ │ │ │ │ ├── cvaux.hpp │ │ │ │ │ │ ├── cvwimage.h │ │ │ │ │ │ ├── cxcore.h │ │ │ │ │ │ ├── cxcore.hpp │ │ │ │ │ │ ├── cxeigen.hpp │ │ │ │ │ │ ├── cxmisc.h │ │ │ │ │ │ ├── highgui.h │ │ │ │ │ │ └── ml.h │ │ │ │ │ │ └── opencv2 │ │ │ │ │ │ ├── calib3d.hpp │ │ │ │ │ │ ├── calib3d │ │ │ │ │ │ ├── calib3d.hpp │ │ │ │ │ │ └── calib3d_c.h │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── cv_cpu_dispatch.h │ │ │ │ │ │ ├── cv_cpu_helper.h │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ └── intrin_vsx.hpp │ │ │ │ │ │ ├── ippasync.hpp │ │ │ │ │ │ ├── mat.hpp │ │ │ │ │ │ ├── mat.inl.hpp │ │ │ │ │ │ ├── matx.hpp │ │ │ │ │ │ ├── neon_utils.hpp │ │ │ │ │ │ ├── ocl.hpp │ │ │ │ │ │ ├── ocl_genbase.hpp │ │ │ │ │ │ ├── opencl │ │ │ │ │ │ │ ├── ocl_defs.hpp │ │ │ │ │ │ │ ├── opencl_info.hpp │ │ │ │ │ │ │ ├── opencl_svm.hpp │ │ │ │ │ │ │ └── runtime │ │ │ │ │ │ │ │ ├── autogenerated │ │ │ │ │ │ │ │ ├── opencl_clamdblas.hpp │ │ │ │ │ │ │ │ ├── opencl_clamdfft.hpp │ │ │ │ │ │ │ │ ├── opencl_core.hpp │ │ │ │ │ │ │ │ ├── opencl_core_wrappers.hpp │ │ │ │ │ │ │ │ ├── opencl_gl.hpp │ │ │ │ │ │ │ │ └── opencl_gl_wrappers.hpp │ │ │ │ │ │ │ │ ├── opencl_clamdblas.hpp │ │ │ │ │ │ │ │ ├── opencl_clamdfft.hpp │ │ │ │ │ │ │ │ ├── opencl_core.hpp │ │ │ │ │ │ │ │ ├── opencl_core_wrappers.hpp │ │ │ │ │ │ │ │ ├── opencl_gl.hpp │ │ │ │ │ │ │ │ ├── opencl_gl_wrappers.hpp │ │ │ │ │ │ │ │ ├── opencl_svm_20.hpp │ │ │ │ │ │ │ │ ├── opencl_svm_definitions.hpp │ │ │ │ │ │ │ │ └── opencl_svm_hsa_extension.hpp │ │ │ │ │ │ ├── opengl.hpp │ │ │ │ │ │ ├── operations.hpp │ │ │ │ │ │ ├── optim.hpp │ │ │ │ │ │ ├── ovx.hpp │ │ │ │ │ │ ├── persistence.hpp │ │ │ │ │ │ ├── ptr.inl.hpp │ │ │ │ │ │ ├── saturate.hpp │ │ │ │ │ │ ├── softfloat.hpp │ │ │ │ │ │ ├── sse_utils.hpp │ │ │ │ │ │ ├── traits.hpp │ │ │ │ │ │ ├── types.hpp │ │ │ │ │ │ ├── types_c.h │ │ │ │ │ │ ├── utility.hpp │ │ │ │ │ │ ├── utils │ │ │ │ │ │ │ ├── filesystem.hpp │ │ │ │ │ │ │ ├── logger.defines.hpp │ │ │ │ │ │ │ ├── logger.hpp │ │ │ │ │ │ │ └── trace.hpp │ │ │ │ │ │ ├── va_intel.hpp │ │ │ │ │ │ ├── version.hpp │ │ │ │ │ │ ├── vsx_utils.hpp │ │ │ │ │ │ └── wimage.hpp │ │ │ │ │ │ ├── cvconfig.h │ │ │ │ │ │ ├── dnn.hpp │ │ │ │ │ │ ├── dnn │ │ │ │ │ │ ├── all_layers.hpp │ │ │ │ │ │ ├── dict.hpp │ │ │ │ │ │ ├── dnn.hpp │ │ │ │ │ │ ├── dnn.inl.hpp │ │ │ │ │ │ ├── layer.details.hpp │ │ │ │ │ │ ├── layer.hpp │ │ │ │ │ │ └── shape_utils.hpp │ │ │ │ │ │ ├── features2d.hpp │ │ │ │ │ │ ├── features2d │ │ │ │ │ │ ├── features2d.hpp │ │ │ │ │ │ └── hal │ │ │ │ │ │ │ └── interface.h │ │ │ │ │ │ ├── flann.hpp │ │ │ │ │ │ ├── flann │ │ │ │ │ │ ├── all_indices.h │ │ │ │ │ │ ├── allocator.h │ │ │ │ │ │ ├── any.h │ │ │ │ │ │ ├── autotuned_index.h │ │ │ │ │ │ ├── composite_index.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── defines.h │ │ │ │ │ │ ├── dist.h │ │ │ │ │ │ ├── dummy.h │ │ │ │ │ │ ├── dynamic_bitset.h │ │ │ │ │ │ ├── flann.hpp │ │ │ │ │ │ ├── flann_base.hpp │ │ │ │ │ │ ├── general.h │ │ │ │ │ │ ├── ground_truth.h │ │ │ │ │ │ ├── hdf5.h │ │ │ │ │ │ ├── heap.h │ │ │ │ │ │ ├── hierarchical_clustering_index.h │ │ │ │ │ │ ├── index_testing.h │ │ │ │ │ │ ├── kdtree_index.h │ │ │ │ │ │ ├── kdtree_single_index.h │ │ │ │ │ │ ├── kmeans_index.h │ │ │ │ │ │ ├── linear_index.h │ │ │ │ │ │ ├── logger.h │ │ │ │ │ │ ├── lsh_index.h │ │ │ │ │ │ ├── lsh_table.h │ │ │ │ │ │ ├── matrix.h │ │ │ │ │ │ ├── miniflann.hpp │ │ │ │ │ │ ├── nn_index.h │ │ │ │ │ │ ├── object_factory.h │ │ │ │ │ │ ├── params.h │ │ │ │ │ │ ├── random.h │ │ │ │ │ │ ├── result_set.h │ │ │ │ │ │ ├── sampling.h │ │ │ │ │ │ ├── saving.h │ │ │ │ │ │ ├── simplex_downhill.h │ │ │ │ │ │ └── timer.h │ │ │ │ │ │ ├── highgui.hpp │ │ │ │ │ │ ├── highgui │ │ │ │ │ │ ├── highgui.hpp │ │ │ │ │ │ └── highgui_c.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 │ │ │ │ │ │ ├── ml.hpp │ │ │ │ │ │ ├── ml │ │ │ │ │ │ ├── ml.hpp │ │ │ │ │ │ └── ml.inl.hpp │ │ │ │ │ │ ├── objdetect.hpp │ │ │ │ │ │ ├── objdetect │ │ │ │ │ │ ├── detection_based_tracker.hpp │ │ │ │ │ │ ├── objdetect.hpp │ │ │ │ │ │ └── objdetect_c.h │ │ │ │ │ │ ├── opencv.hpp │ │ │ │ │ │ ├── opencv_modules.hpp │ │ │ │ │ │ ├── photo.hpp │ │ │ │ │ │ ├── photo │ │ │ │ │ │ ├── cuda.hpp │ │ │ │ │ │ ├── photo.hpp │ │ │ │ │ │ └── photo_c.h │ │ │ │ │ │ ├── shape.hpp │ │ │ │ │ │ ├── shape │ │ │ │ │ │ ├── emdL1.hpp │ │ │ │ │ │ ├── hist_cost.hpp │ │ │ │ │ │ ├── shape.hpp │ │ │ │ │ │ ├── shape_distance.hpp │ │ │ │ │ │ └── shape_transformer.hpp │ │ │ │ │ │ ├── stitching.hpp │ │ │ │ │ │ ├── stitching │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── autocalib.hpp │ │ │ │ │ │ │ ├── blenders.hpp │ │ │ │ │ │ │ ├── camera.hpp │ │ │ │ │ │ │ ├── exposure_compensate.hpp │ │ │ │ │ │ │ ├── matchers.hpp │ │ │ │ │ │ │ ├── motion_estimators.hpp │ │ │ │ │ │ │ ├── seam_finders.hpp │ │ │ │ │ │ │ ├── timelapsers.hpp │ │ │ │ │ │ │ ├── util.hpp │ │ │ │ │ │ │ ├── util_inl.hpp │ │ │ │ │ │ │ ├── warpers.hpp │ │ │ │ │ │ │ └── warpers_inl.hpp │ │ │ │ │ │ └── warpers.hpp │ │ │ │ │ │ ├── superres.hpp │ │ │ │ │ │ ├── superres │ │ │ │ │ │ └── optical_flow.hpp │ │ │ │ │ │ ├── video.hpp │ │ │ │ │ │ ├── video │ │ │ │ │ │ ├── background_segm.hpp │ │ │ │ │ │ ├── tracking.hpp │ │ │ │ │ │ ├── tracking_c.h │ │ │ │ │ │ └── video.hpp │ │ │ │ │ │ ├── videoio.hpp │ │ │ │ │ │ ├── videoio │ │ │ │ │ │ ├── cap_ios.h │ │ │ │ │ │ ├── videoio.hpp │ │ │ │ │ │ └── videoio_c.h │ │ │ │ │ │ ├── videostab.hpp │ │ │ │ │ │ └── videostab │ │ │ │ │ │ ├── deblurring.hpp │ │ │ │ │ │ ├── fast_marching.hpp │ │ │ │ │ │ ├── fast_marching_inl.hpp │ │ │ │ │ │ ├── frame_source.hpp │ │ │ │ │ │ ├── global_motion.hpp │ │ │ │ │ │ ├── inpainting.hpp │ │ │ │ │ │ ├── log.hpp │ │ │ │ │ │ ├── motion_core.hpp │ │ │ │ │ │ ├── motion_stabilizing.hpp │ │ │ │ │ │ ├── optical_flow.hpp │ │ │ │ │ │ ├── outlier_rejection.hpp │ │ │ │ │ │ ├── ring_buffer.hpp │ │ │ │ │ │ ├── stabilizer.hpp │ │ │ │ │ │ └── wobble_suppression.hpp │ │ │ │ └── src │ │ │ │ │ ├── postprocess.cpp │ │ │ │ │ └── preprocess.cpp │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── baidu │ │ │ │ │ └── litekitcore │ │ │ │ │ └── demo │ │ │ │ │ ├── MachineController.java │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── utils │ │ │ │ │ ├── FileUtil.java │ │ │ │ │ └── ImageUtil.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── baidu │ │ │ └── litekitcore │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle │ └── iOS │ ├── Dependence │ └── README.md │ ├── LiteKitCoreDemo.xcodeproj │ └── project.pbxproj │ ├── LiteKitCoreDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── DemoViewController │ │ ├── BaseDetectView.h │ │ ├── BaseDetectView.m │ │ ├── CameraViewController.h │ │ ├── CameraViewController.m │ │ ├── ImageViewController.h │ │ └── ImageViewController.mm │ ├── File.swift │ ├── Info.plist │ ├── LiteKitCoreDemo-Bridging-Header.h │ ├── Resources │ │ ├── Default-568h@2x.png │ │ └── litekitcore_models │ │ │ └── LiteKitCoreDemo.bundle │ │ │ ├── cat.jpeg │ │ │ ├── cat_labels.txt │ │ │ ├── cat_mobilenetv2.nb │ │ │ ├── input_1_3_256_256 │ │ │ ├── mobilenet_v1_opt.nb │ │ │ └── mobilenetv2 │ │ │ ├── model.mlm │ │ │ └── params.mlm │ ├── ViewController+LiteKitCore_CPP.h │ ├── ViewController+LiteKitCore_CPP.mm │ ├── ViewController+LiteKitCore_OC.h │ ├── ViewController+LiteKitCore_OC.mm │ ├── ViewController+View.h │ ├── ViewController+View.mm │ ├── ViewController.h │ ├── ViewController.mm │ └── main.m │ └── Podfile ├── LiteKitDemo ├── Android │ ├── LiteKitDemo │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── baidu │ │ │ │ │ └── litekit │ │ │ │ │ └── demo │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── assets │ │ │ │ │ ├── images │ │ │ │ │ │ └── 0.jpg │ │ │ │ │ └── pics │ │ │ │ │ │ └── low_demo.png │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── baidu │ │ │ │ │ │ └── litekit │ │ │ │ │ │ └── demo │ │ │ │ │ │ ├── CameraBaseActivity.java │ │ │ │ │ │ ├── HandGestureRecognizeActivity.java │ │ │ │ │ │ ├── HandGestureRecognizeImageActivity.java │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ ├── OCRActivity.java │ │ │ │ │ │ ├── PortraitSegmentationActivity.java │ │ │ │ │ │ ├── PortraitSegmentationImageActivity.java │ │ │ │ │ │ ├── VideoSuperResolutionActivity.java │ │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── FileUtil.java │ │ │ │ │ │ ├── ImageUtil.java │ │ │ │ │ │ ├── PermissionUtils.java │ │ │ │ │ │ └── ThreadManager.java │ │ │ │ │ │ └── view │ │ │ │ │ │ └── CameraView.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── activity_hand_gesture_detection.xml │ │ │ │ │ ├── activity_hand_gesture_detection_image.xml │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ ├── activity_ocr.xml │ │ │ │ │ ├── activity_portrait_segmentation.xml │ │ │ │ │ ├── activity_portrait_segmentation_image.xml │ │ │ │ │ ├── activity_video_base.xml │ │ │ │ │ └── activity_video_super_resolution.xml │ │ │ │ │ ├── menu │ │ │ │ │ ├── menu_hand_image.xml │ │ │ │ │ ├── menu_portrait_image.xml │ │ │ │ │ └── menu_video.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── camera_switch.png │ │ │ │ │ ├── face_img.jpg │ │ │ │ │ ├── gesture.jpeg │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_round.png │ │ │ │ │ ├── icon_image.png │ │ │ │ │ ├── ocr.jpg │ │ │ │ │ ├── portrait.jpeg │ │ │ │ │ ├── portrait_girl.jpg │ │ │ │ │ └── super_resolution.jpeg │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── baidu │ │ │ │ └── litekit │ │ │ │ └── demo │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── README.md └── iOS │ └── LiteKitDemo │ ├── LiteKitDemo.xcodeproj │ └── project.pbxproj │ ├── LiteKitDemo │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── HandGesture │ │ ├── HandGestureImageViewController.h │ │ ├── HandGestureImageViewController.m │ │ ├── HandGestureRecognizeView.h │ │ ├── HandGestureRecognizeView.m │ │ ├── HandGestureViewController.h │ │ └── HandGestureViewController.m │ ├── Info.plist │ ├── LiteKitDemo-Bridging-Header.h │ ├── OCR │ │ ├── LiteKitOCRView.h │ │ ├── LiteKitOCRView.m │ │ ├── LiteKitOCRViewController.h │ │ ├── LiteKitOCRViewController.mm │ │ ├── LiteKitPhotoSelector.h │ │ └── LiteKitPhotoSelector.m │ ├── Segmentation │ │ ├── SegmentationImageViewController.h │ │ ├── SegmentationImageViewController.mm │ │ ├── SegmentationViewController.h │ │ └── SegmentationViewController.mm │ ├── SuperResolution │ │ ├── SuperResolutionViewController.h │ │ └── SuperResolutionViewController.mm │ ├── ViewController.h │ ├── ViewController.m │ ├── base │ │ ├── BaseDetectView.h │ │ ├── BaseDetectView.m │ │ ├── BaseViewController.h │ │ └── BaseViewController.m │ ├── litekit-swift.swift │ ├── main.m │ └── resource │ │ ├── bg_gesture.jpeg │ │ ├── bg_ocr.jpeg │ │ ├── bg_portrait.jpeg │ │ ├── bg_super_resolution.jpeg │ │ ├── test-HandGesture.jpg │ │ ├── test-SuperResolution.jpeg │ │ ├── test_OCR_0.jpg │ │ └── test_PortraitSegmentation.png │ └── Podfile ├── README.md └── tools └── codestyle ├── .gitignore ├── clang_format.hook ├── copyright.hook ├── cpplint_pre_commit.hook ├── docstring_checker.py ├── pylint_pre_commit.hook └── test_docstring_checker.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Doc/LiteKitCoreFAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/LiteKitCoreFAQ.md -------------------------------------------------------------------------------- /Doc/LiteKitCore接入文档(for Java API).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/LiteKitCore接入文档(for Java API).md -------------------------------------------------------------------------------- /Doc/LiteKitCore接入文档(for Native C++ API on Android).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/LiteKitCore接入文档(for Native C++ API on Android).md -------------------------------------------------------------------------------- /Doc/LiteKitCore接入文档(for Native C++ API on iOS).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/LiteKitCore接入文档(for Native C++ API on iOS).md -------------------------------------------------------------------------------- /Doc/LiteKitCore接入文档(for Objective-C API).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/LiteKitCore接入文档(for Objective-C API).md -------------------------------------------------------------------------------- /Doc/LiteKitCore接口文档(for Java API).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/LiteKitCore接口文档(for Java API).md -------------------------------------------------------------------------------- /Doc/LiteKitCore接口文档(for Native C++ API).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/LiteKitCore接口文档(for Native C++ API).md -------------------------------------------------------------------------------- /Doc/LiteKitCore接口文档(for Objective-C API).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/LiteKitCore接口文档(for Objective-C API).md -------------------------------------------------------------------------------- /Doc/LiteKitFAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/LiteKitFAQ.md -------------------------------------------------------------------------------- /Doc/LiteKit接口文档_人像分割.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/LiteKit接口文档_人像分割.md -------------------------------------------------------------------------------- /Doc/LiteKit接口文档_手势识别.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/LiteKit接口文档_手势识别.md -------------------------------------------------------------------------------- /Doc/LiteKit接口文档_视频超分.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/LiteKit接口文档_视频超分.md -------------------------------------------------------------------------------- /Doc/Resources/1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/1_1.png -------------------------------------------------------------------------------- /Doc/Resources/1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/1_2.png -------------------------------------------------------------------------------- /Doc/Resources/1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/1_3.png -------------------------------------------------------------------------------- /Doc/Resources/1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/1_4.png -------------------------------------------------------------------------------- /Doc/Resources/1_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/1_5.gif -------------------------------------------------------------------------------- /Doc/Resources/1_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/1_6.gif -------------------------------------------------------------------------------- /Doc/Resources/1_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/1_7.png -------------------------------------------------------------------------------- /Doc/Resources/1_7_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/1_7_2.png -------------------------------------------------------------------------------- /Doc/Resources/1_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/1_8.png -------------------------------------------------------------------------------- /Doc/Resources/1_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/1_9.png -------------------------------------------------------------------------------- /Doc/Resources/21_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/21_1.png -------------------------------------------------------------------------------- /Doc/Resources/2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/2_1.png -------------------------------------------------------------------------------- /Doc/Resources/2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/2_2.png -------------------------------------------------------------------------------- /Doc/Resources/2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/2_3.png -------------------------------------------------------------------------------- /Doc/Resources/2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/2_4.png -------------------------------------------------------------------------------- /Doc/Resources/3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/3_1.png -------------------------------------------------------------------------------- /Doc/Resources/3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/3_2.png -------------------------------------------------------------------------------- /Doc/Resources/3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/3_3.png -------------------------------------------------------------------------------- /Doc/Resources/4_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/4_1.png -------------------------------------------------------------------------------- /Doc/Resources/4_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/4_2.png -------------------------------------------------------------------------------- /Doc/Resources/4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/4_3.png -------------------------------------------------------------------------------- /Doc/Resources/4_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/4_4.png -------------------------------------------------------------------------------- /Doc/Resources/4_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/4_5.png -------------------------------------------------------------------------------- /Doc/Resources/4_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/Doc/Resources/4_6.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LICENSE -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/README.md -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/build.gradle -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/gradle.properties -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/gradlew -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/gradlew.bat -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/build.gradle -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/proguard-rules.pro -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/include/common_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/include/common_log.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/include/litekit_inference_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/include/litekit_inference_api.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/include/litekit_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/include/litekit_init.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/include/litekit_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/include/litekit_input.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/include/litekit_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/include/litekit_output.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/include/litekit_release.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/include/litekit_release.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/include/litekit_run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/include/litekit_run.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/include/litekit_tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/include/litekit_tensor.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/src/dynamic_register_native_methods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/src/dynamic_register_native_methods.cpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/src/litekit_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/src/litekit_init.cpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/src/litekit_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/src/litekit_input.cpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/src/litekit_output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/src/litekit_output.cpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/src/litekit_release.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/src/litekit_release.cpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/src/litekit_run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/src/litekit_run.cpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/src/litekit_tensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/cpp/src/litekit_tensor.cpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/java/com/baidu/litekitcore/LiteKitBaseMachine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/java/com/baidu/litekitcore/LiteKitBaseMachine.java -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/java/com/baidu/litekitcore/LiteKitData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/java/com/baidu/litekitcore/LiteKitData.java -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/java/com/baidu/litekitcore/LiteKitInferenceEngineConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/java/com/baidu/litekitcore/LiteKitInferenceEngineConfig.java -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/java/com/baidu/litekitcore/LiteKitMachineConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/java/com/baidu/litekitcore/LiteKitMachineConfig.java -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/java/com/baidu/litekitcore/LiteKitMachineService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/java/com/baidu/litekitcore/LiteKitMachineService.java -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/java/com/baidu/litekitcore/LiteKitPaddleConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/java/com/baidu/litekitcore/LiteKitPaddleConfig.java -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/java/com/baidu/litekitcore/LiteKitPaddleLiteConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/java/com/baidu/litekitcore/LiteKitPaddleLiteConfig.java -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/java/com/baidu/litekitcore/LiteKitPaddleLiteMachine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/java/com/baidu/litekitcore/LiteKitPaddleLiteMachine.java -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/java/com/baidu/litekitcore/LiteKitTensor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/java/com/baidu/litekitcore/LiteKitTensor.java -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/litekitcore/src/main/java/com/baidu/litekitcore/LiteKitTensorShape.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/Android/litekitcore/src/main/java/com/baidu/litekitcore/LiteKitTensorShape.java -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':litekitcore' 2 | -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/CMakeLists.txt -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/README.md -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/build-ios/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/build-ios/CMakeLists.txt -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/build-ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/build-ios/README.md -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/build-ios/product_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/build-ios/product_build.sh -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/build-ios/tools/iOS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/build-ios/tools/iOS.cmake -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/build_android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/build_android.sh -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/CMakeLists.txt -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/base_machine_predictor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/base_machine_predictor.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/common_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/common_log.cpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/common_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/common_log.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/litekit_convertor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/litekit_convertor.cpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/litekit_convertor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/litekit_convertor.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/litekit_filetools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/litekit_filetools.cpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/litekit_filetools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/litekit_filetools.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/litekit_inference_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/litekit_inference_api.cpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/litekit_inference_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/litekit_inference_api.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_gpu/paddle_gpu_machine_predictor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_gpu/paddle_gpu_machine_predictor.cpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_gpu/paddle_gpu_machine_predictor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_gpu/paddle_gpu_machine_predictor.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_gpu_header/Framework.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_gpu_header/Framework.pbobjc.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_gpu_header/PaddleMobileGPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_gpu_header/PaddleMobileGPU.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_gpu_header/paddle_mobile-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_gpu_header/paddle_mobile-Swift.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_gpu_header/paddle_mobile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_gpu_header/paddle_mobile.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_gpu_header/paddle_mobile_gpu_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_gpu_header/paddle_mobile_gpu_interface.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_lite/paddle_lite_image_preprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_lite/paddle_lite_image_preprocess.cpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_lite/paddle_lite_image_preprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_lite/paddle_lite_image_preprocess.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_lite/paddle_lite_machine_predictor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_lite/paddle_lite_machine_predictor.cpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_lite/paddle_lite_machine_predictor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_lite/paddle_lite_machine_predictor.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_lite_header/paddle_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_lite_header/paddle_api.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_lite_header/paddle_image_preprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_lite_header/paddle_image_preprocess.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_lite_header/paddle_lite_factory_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_lite_header/paddle_lite_factory_helper.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_lite_header/paddle_place.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_lite_header/paddle_place.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_lite_header/paddle_use_kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_lite_header/paddle_use_kernels.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_lite_header/paddle_use_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_lite_header/paddle_use_ops.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_lite_header/paddle_use_passes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/paddle_lite_header/paddle_use_passes.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/platform_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/C++/src/main/cpp/litekit_framework/platform_switch.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Dependency/PaddleGPU/include/paddle_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Dependency/PaddleGPU/include/paddle_api.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Dependency/PaddleGPU/include/paddle_image_preprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Dependency/PaddleGPU/include/paddle_image_preprocess.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Dependency/PaddleGPU/include/paddle_lite_factory_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Dependency/PaddleGPU/include/paddle_lite_factory_helper.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Dependency/PaddleGPU/include/paddle_place.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Dependency/PaddleGPU/include/paddle_place.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Dependency/PaddleGPU/include/paddle_use_kernels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Dependency/PaddleGPU/include/paddle_use_kernels.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Dependency/PaddleGPU/include/paddle_use_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Dependency/PaddleGPU/include/paddle_use_ops.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Dependency/PaddleGPU/include/paddle_use_passes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Dependency/PaddleGPU/include/paddle_use_passes.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Backend/PaddleCPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Backend/PaddleCPU.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Backend/PaddleCPU.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Backend/PaddleCPU.mm -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Backend/PaddleGPU/LiteKitInputMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Backend/PaddleGPU/LiteKitInputMatrix.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Backend/PaddleGPU/LiteKitInputMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Backend/PaddleGPU/LiteKitInputMatrix.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Backend/PaddleGPU/PaddleGPU+MetalResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Backend/PaddleGPU/PaddleGPU+MetalResource.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Backend/PaddleGPU/PaddleGPU+MetalResource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Backend/PaddleGPU/PaddleGPU+MetalResource.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Backend/PaddleGPU/PaddleGPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Backend/PaddleGPU/PaddleGPU.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Backend/PaddleGPU/PaddleGPU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Backend/PaddleGPU/PaddleGPU.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Config/LiteKitInferenceEngineConfigProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Config/LiteKitInferenceEngineConfigProtocol.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Config/LiteKitMachineConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Config/LiteKitMachineConfig.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Config/LiteKitMachineConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Config/LiteKitMachineConfig.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Config/LiteKitMachineConfigProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Config/LiteKitMachineConfigProtocol.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Config/LiteKitPaddleConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Config/LiteKitPaddleConfig.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Config/LiteKitPaddleConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Config/LiteKitPaddleConfig.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Converter/LiteKitInputConvertor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Converter/LiteKitInputConvertor.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Converter/LiteKitInputConvertor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Converter/LiteKitInputConvertor.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Converter/LiteKitOutputConvertor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Converter/LiteKitOutputConvertor.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Converter/LiteKitOutputConvertor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Converter/LiteKitOutputConvertor.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Dispatcher/LiteKitTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Dispatcher/LiteKitTask.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Dispatcher/LiteKitTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Dispatcher/LiteKitTask.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Dispatcher/LiteKitTaskDispatcherManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Dispatcher/LiteKitTaskDispatcherManager.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Dispatcher/LiteKitTaskDispatcherManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Dispatcher/LiteKitTaskDispatcherManager.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Dispatcher/LiteKitTaskQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Dispatcher/LiteKitTaskQueue.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Dispatcher/LiteKitTaskQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Dispatcher/LiteKitTaskQueue.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/LiteKitCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/LiteKitCore.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Logger/LiteKitLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Logger/LiteKitLogger.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Logger/LiteKitLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Logger/LiteKitLogger.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Logger/LiteKitLoggerProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Logger/LiteKitLoggerProtocol.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Machines/BaseMachine/LiteKitBaseMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Machines/BaseMachine/LiteKitBaseMachine.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Machines/BaseMachine/LiteKitBaseMachine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Machines/BaseMachine/LiteKitBaseMachine.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Machines/BaseMachine/LiteKitMachine+Protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Machines/BaseMachine/LiteKitMachine+Protected.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Machines/BaseMachine/LiteKitMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Machines/BaseMachine/LiteKitMachine.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Machines/BaseMachine/LiteKitMachine.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Machines/BaseMachine/LiteKitMachine.mm -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Machines/LiteKitBaseMachine+Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Machines/LiteKitBaseMachine+Logger.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Machines/LiteKitBaseMachine+Logger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Machines/LiteKitBaseMachine+Logger.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Machines/LiteKitBaseMachine+Performancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Machines/LiteKitBaseMachine+Performancer.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Machines/LiteKitBaseMachine+Performancer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Machines/LiteKitBaseMachine+Performancer.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Machines/PaddleMachines/LiteKitPaddleCPUMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Machines/PaddleMachines/LiteKitPaddleCPUMachine.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Machines/PaddleMachines/LiteKitPaddleCPUMachine.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Machines/PaddleMachines/LiteKitPaddleCPUMachine.mm -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Machines/PaddleMachines/LiteKitPaddleGPUMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Machines/PaddleMachines/LiteKitPaddleGPUMachine.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Machines/PaddleMachines/LiteKitPaddleGPUMachine.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Machines/PaddleMachines/LiteKitPaddleGPUMachine.mm -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Model/LiteKitData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Model/LiteKitData.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Model/LiteKitData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Model/LiteKitData.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Processor/LiteKitDataProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Processor/LiteKitDataProcess.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Processor/LiteKitDataProcess.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Processor/LiteKitDataProcess.mm -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Profiler/LiteKitPerformanceProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Profiler/LiteKitPerformanceProfiler.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Profiler/LiteKitPerformanceProfiler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Profiler/LiteKitPerformanceProfiler.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Service/LiteKitMachineService+Performancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Service/LiteKitMachineService+Performancer.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Service/LiteKitMachineService+Performancer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Service/LiteKitMachineService+Performancer.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Service/LiteKitMachineService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Service/LiteKitMachineService.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Service/LiteKitMachineService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Service/LiteKitMachineService.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Utils/LiteKitCommonDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Utils/LiteKitCommonDefines.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Utils/LiteKitConvertTool+LiteKitData2PaddleInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Utils/LiteKitConvertTool+LiteKitData2PaddleInput.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Utils/LiteKitConvertTool+LiteKitData2PaddleInput.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Utils/LiteKitConvertTool+LiteKitData2PaddleInput.mm -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Utils/LiteKitConvertTool+PaddleOutput2LiteKitData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Utils/LiteKitConvertTool+PaddleOutput2LiteKitData.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Utils/LiteKitConvertTool+PaddleOutput2LiteKitData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Utils/LiteKitConvertTool+PaddleOutput2LiteKitData.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Utils/LiteKitConvertTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Utils/LiteKitConvertTool.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Utils/LiteKitConvertTool.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Utils/LiteKitConvertTool.mm -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Utils/LiteKitConvertTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Utils/LiteKitConvertTools.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/Sources/Utils/LiteKitMachineCommonHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/Sources/Utils/LiteKitMachineCommonHeader.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/build-ios/LiteKitCore.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/build-ios/LiteKitCore.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/build-ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/build-ios/Podfile -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCore/iOS/build-ios/product_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCore/iOS/build-ios/product_build.sh -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/README.md -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/build.gradle -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/proguard-rules.pro -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/androidTest/java/com/baidu/litekitcore/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/androidTest/java/com/baidu/litekitcore/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/assets/input_1_3_256_256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/assets/input_1_3_256_256 -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/assets/models/mobilenet_v1_opt.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/assets/models/mobilenet_v1_opt.nb -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/common_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/common_log.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/postprocess.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/preprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/preprocess.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv/cv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv/cv.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv/cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv/cv.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv/cvaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv/cvaux.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv/cvaux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv/cvaux.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv/cvwimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv/cvwimage.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv/cxcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv/cxcore.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv/cxcore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv/cxcore.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv/cxeigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv/cxeigen.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv/cxmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv/cxmisc.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv/highgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv/highgui.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv/ml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv/ml.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/calib3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/calib3d.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/calib3d/calib3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/calib3d/calib3d.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/calib3d/calib3d_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/calib3d/calib3d_c.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/affine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/affine.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/base.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/bufferpool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/bufferpool.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/core.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/core_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/core_c.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda.inl.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/block.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/border_interpolate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/border_interpolate.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/color.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/common.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/datamov_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/datamov_utils.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/detail/color_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/detail/color_detail.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/detail/reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/detail/reduce.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/detail/reduce_key_val.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/detail/reduce_key_val.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/detail/transform_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/detail/transform_detail.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/detail/type_traits_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/detail/type_traits_detail.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/detail/vec_distance_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/detail/vec_distance_detail.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/dynamic_smem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/dynamic_smem.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/emulation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/emulation.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/filters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/filters.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/funcattrib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/funcattrib.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/functional.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/limits.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/reduce.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/saturate_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/saturate_cast.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/scan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/scan.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/simd_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/simd_functions.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/transform.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/type_traits.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/utility.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/vec_distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/vec_distance.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/vec_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/vec_math.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/vec_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/vec_traits.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/warp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/warp.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/warp_reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/warp_reduce.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/warp_shuffle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda/warp_shuffle.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda_stream_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda_stream_accessor.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cuda_types.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cv_cpu_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cv_cpu_dispatch.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cv_cpu_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cv_cpu_helper.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cvdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cvdef.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cvstd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cvstd.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cvstd.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/cvstd.inl.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/directx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/directx.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/eigen.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/fast_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/fast_math.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/hal/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/hal/hal.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/hal/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/hal/interface.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/hal/intrin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/hal/intrin.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/hal/intrin_cpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/hal/intrin_cpp.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/hal/intrin_neon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/hal/intrin_neon.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/hal/intrin_sse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/hal/intrin_sse.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/hal/intrin_vsx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/hal/intrin_vsx.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/ippasync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/ippasync.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/mat.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/mat.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/mat.inl.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/matx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/matx.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/neon_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/neon_utils.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/ocl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/ocl.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/ocl_genbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/ocl_genbase.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/ocl_defs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/ocl_defs.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/opencl_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/opencl_info.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/opencl_svm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/opencl_svm.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/autogenerated/opencl_clamdblas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/autogenerated/opencl_clamdblas.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/autogenerated/opencl_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/autogenerated/opencl_core.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/autogenerated/opencl_core_wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/autogenerated/opencl_core_wrappers.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/autogenerated/opencl_gl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/autogenerated/opencl_gl.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/autogenerated/opencl_gl_wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/autogenerated/opencl_gl_wrappers.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/opencl_clamdblas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/opencl_clamdblas.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/opencl_clamdfft.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/opencl_clamdfft.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/opencl_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/opencl_core.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/opencl_core_wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/opencl_core_wrappers.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/opencl_gl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/opencl_gl.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/opencl_gl_wrappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/opencl_gl_wrappers.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/opencl_svm_20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/opencl_svm_20.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/opencl_svm_definitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/opencl_svm_definitions.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/opencl_svm_hsa_extension.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opencl/runtime/opencl_svm_hsa_extension.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opengl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/opengl.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/operations.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/optim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/optim.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/ovx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/ovx.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/persistence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/persistence.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/ptr.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/ptr.inl.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/saturate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/saturate.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/softfloat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/softfloat.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/sse_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/sse_utils.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/traits.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/types.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/types_c.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/utility.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/utils/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/utils/filesystem.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/utils/logger.defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/utils/logger.defines.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/utils/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/utils/logger.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/utils/trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/utils/trace.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/va_intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/va_intel.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/version.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/vsx_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/vsx_utils.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/wimage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/core/wimage.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/cvconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/cvconfig.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/dnn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/dnn.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/dnn/all_layers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/dnn/all_layers.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/dnn/dict.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/dnn/dict.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/dnn/dnn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/dnn/dnn.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/dnn/dnn.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/dnn/dnn.inl.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/dnn/layer.details.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/dnn/layer.details.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/dnn/layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/dnn/layer.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/dnn/shape_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/dnn/shape_utils.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/features2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/features2d.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/features2d/features2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/features2d/features2d.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/features2d/hal/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/features2d/hal/interface.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/all_indices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/all_indices.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/allocator.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/any.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/autotuned_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/autotuned_index.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/composite_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/composite_index.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/config.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/defines.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/dist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/dist.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/dummy.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/dynamic_bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/dynamic_bitset.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/flann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/flann.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/flann_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/flann_base.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/general.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/ground_truth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/ground_truth.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/hdf5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/hdf5.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/heap.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/hierarchical_clustering_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/hierarchical_clustering_index.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/index_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/index_testing.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/kdtree_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/kdtree_index.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/kdtree_single_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/kdtree_single_index.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/kmeans_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/kmeans_index.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/linear_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/linear_index.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/logger.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/lsh_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/lsh_index.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/lsh_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/lsh_table.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/matrix.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/miniflann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/miniflann.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/nn_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/nn_index.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/object_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/object_factory.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/params.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/random.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/result_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/result_set.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/sampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/sampling.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/saving.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/saving.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/simplex_downhill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/simplex_downhill.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/flann/timer.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/highgui.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/highgui/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/highgui/highgui.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/highgui/highgui_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/highgui/highgui_c.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/imgcodecs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/imgcodecs.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/imgcodecs/imgcodecs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/imgcodecs/imgcodecs.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/imgcodecs/imgcodecs_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/imgcodecs/imgcodecs_c.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/imgcodecs/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/imgcodecs/ios.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/imgproc.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/imgproc/detail/distortion_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/imgproc/detail/distortion_model.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/imgproc/hal/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/imgproc/hal/hal.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/imgproc/hal/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/imgproc/hal/interface.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/imgproc/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/imgproc/imgproc.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/imgproc/imgproc_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/imgproc/imgproc_c.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/imgproc/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/imgproc/types_c.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/ml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/ml.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/ml/ml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/ml/ml.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/ml/ml.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/ml/ml.inl.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/objdetect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/objdetect.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/objdetect/detection_based_tracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/objdetect/detection_based_tracker.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/objdetect/objdetect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/objdetect/objdetect.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/objdetect/objdetect_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/objdetect/objdetect_c.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/opencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/opencv.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/opencv_modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/opencv_modules.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/photo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/photo.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/photo/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/photo/cuda.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/photo/photo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/photo/photo.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/photo/photo_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/photo/photo_c.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/shape.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/shape/emdL1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/shape/emdL1.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/shape/hist_cost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/shape/hist_cost.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/shape/shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/shape/shape.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/shape/shape_distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/shape/shape_distance.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/shape/shape_transformer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/shape/shape_transformer.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/autocalib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/autocalib.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/blenders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/blenders.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/camera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/camera.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/exposure_compensate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/exposure_compensate.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/matchers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/matchers.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/motion_estimators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/motion_estimators.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/seam_finders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/seam_finders.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/timelapsers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/timelapsers.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/util.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/util_inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/util_inl.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/warpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/warpers.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/warpers_inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/detail/warpers_inl.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/warpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/stitching/warpers.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/superres.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/superres.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/superres/optical_flow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/superres/optical_flow.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/video.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/video/background_segm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/video/background_segm.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/video/tracking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/video/tracking.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/video/tracking_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/video/tracking_c.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/video/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/video/video.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videoio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videoio.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videoio/cap_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videoio/cap_ios.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videoio/videoio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videoio/videoio.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videoio/videoio_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videoio/videoio_c.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/deblurring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/deblurring.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/fast_marching.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/fast_marching.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/fast_marching_inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/fast_marching_inl.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/frame_source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/frame_source.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/global_motion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/global_motion.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/inpainting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/inpainting.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/log.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/motion_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/motion_core.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/motion_stabilizing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/motion_stabilizing.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/optical_flow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/optical_flow.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/outlier_rejection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/outlier_rejection.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/ring_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/ring_buffer.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/stabilizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/stabilizer.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/wobble_suppression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/include/thirdparty/opencv/opencv2/videostab/wobble_suppression.hpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/src/postprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/src/postprocess.cpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/src/preprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/cpp/src/preprocess.cpp -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/java/com/baidu/litekitcore/demo/MachineController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/java/com/baidu/litekitcore/demo/MachineController.java -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/java/com/baidu/litekitcore/demo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/java/com/baidu/litekitcore/demo/MainActivity.java -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/java/com/baidu/litekitcore/demo/utils/FileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/java/com/baidu/litekitcore/demo/utils/FileUtil.java -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/java/com/baidu/litekitcore/demo/utils/ImageUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/java/com/baidu/litekitcore/demo/utils/ImageUtil.java -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/app/src/test/java/com/baidu/litekitcore/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/app/src/test/java/com/baidu/litekitcore/ExampleUnitTest.java -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/build.gradle -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/gradle.properties -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/gradlew -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/Android/gradlew.bat -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/Dependence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/Dependence/README.md -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/AppDelegate.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/AppDelegate.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/DemoViewController/BaseDetectView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/DemoViewController/BaseDetectView.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/DemoViewController/BaseDetectView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/DemoViewController/BaseDetectView.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/DemoViewController/CameraViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/DemoViewController/CameraViewController.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/DemoViewController/CameraViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/DemoViewController/CameraViewController.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/DemoViewController/ImageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/DemoViewController/ImageViewController.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/DemoViewController/ImageViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/DemoViewController/ImageViewController.mm -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/File.swift -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Info.plist -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/LiteKitCoreDemo-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/LiteKitCoreDemo-Bridging-Header.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Resources/litekitcore_models/LiteKitCoreDemo.bundle/cat.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Resources/litekitcore_models/LiteKitCoreDemo.bundle/cat.jpeg -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Resources/litekitcore_models/LiteKitCoreDemo.bundle/cat_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Resources/litekitcore_models/LiteKitCoreDemo.bundle/cat_labels.txt -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Resources/litekitcore_models/LiteKitCoreDemo.bundle/cat_mobilenetv2.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Resources/litekitcore_models/LiteKitCoreDemo.bundle/cat_mobilenetv2.nb -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Resources/litekitcore_models/LiteKitCoreDemo.bundle/input_1_3_256_256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Resources/litekitcore_models/LiteKitCoreDemo.bundle/input_1_3_256_256 -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Resources/litekitcore_models/LiteKitCoreDemo.bundle/mobilenet_v1_opt.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Resources/litekitcore_models/LiteKitCoreDemo.bundle/mobilenet_v1_opt.nb -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Resources/litekitcore_models/LiteKitCoreDemo.bundle/mobilenetv2/model.mlm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Resources/litekitcore_models/LiteKitCoreDemo.bundle/mobilenetv2/model.mlm -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Resources/litekitcore_models/LiteKitCoreDemo.bundle/mobilenetv2/params.mlm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/Resources/litekitcore_models/LiteKitCoreDemo.bundle/mobilenetv2/params.mlm -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/ViewController+LiteKitCore_CPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/ViewController+LiteKitCore_CPP.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/ViewController+LiteKitCore_CPP.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/ViewController+LiteKitCore_CPP.mm -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/ViewController+LiteKitCore_OC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/ViewController+LiteKitCore_OC.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/ViewController+LiteKitCore_OC.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/ViewController+LiteKitCore_OC.mm -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/ViewController+View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/ViewController+View.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/ViewController+View.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/ViewController+View.mm -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/ViewController.h -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/ViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/ViewController.mm -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/LiteKitCoreDemo/main.m -------------------------------------------------------------------------------- /LiteKitCore/LiteKitCoreDemo/iOS/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitCore/LiteKitCoreDemo/iOS/Podfile -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/build.gradle -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/proguard-rules.pro -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/androidTest/java/com/baidu/litekit/demo/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/androidTest/java/com/baidu/litekit/demo/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/assets/images/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/assets/images/0.jpg -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/assets/pics/low_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/assets/pics/low_demo.png -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/CameraBaseActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/CameraBaseActivity.java -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/HandGestureRecognizeActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/HandGestureRecognizeActivity.java -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/HandGestureRecognizeImageActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/HandGestureRecognizeImageActivity.java -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/MainActivity.java -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/OCRActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/OCRActivity.java -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/PortraitSegmentationActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/PortraitSegmentationActivity.java -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/PortraitSegmentationImageActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/PortraitSegmentationImageActivity.java -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/VideoSuperResolutionActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/VideoSuperResolutionActivity.java -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/utils/FileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/utils/FileUtil.java -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/utils/ImageUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/utils/ImageUtil.java -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/utils/PermissionUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/utils/PermissionUtils.java -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/utils/ThreadManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/utils/ThreadManager.java -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/view/CameraView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/java/com/baidu/litekit/demo/view/CameraView.java -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/layout/activity_hand_gesture_detection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/layout/activity_hand_gesture_detection.xml -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/layout/activity_hand_gesture_detection_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/layout/activity_hand_gesture_detection_image.xml -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/layout/activity_ocr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/layout/activity_ocr.xml -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/layout/activity_portrait_segmentation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/layout/activity_portrait_segmentation.xml -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/layout/activity_portrait_segmentation_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/layout/activity_portrait_segmentation_image.xml -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/layout/activity_video_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/layout/activity_video_base.xml -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/layout/activity_video_super_resolution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/layout/activity_video_super_resolution.xml -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/menu/menu_hand_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/menu/menu_hand_image.xml -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/menu/menu_portrait_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/menu/menu_portrait_image.xml -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/menu/menu_video.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/menu/menu_video.xml -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-mdpi/camera_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-mdpi/camera_switch.png -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-mdpi/face_img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-mdpi/face_img.jpg -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-mdpi/gesture.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-mdpi/gesture.jpeg -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-mdpi/icon_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-mdpi/icon_image.png -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-mdpi/ocr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-mdpi/ocr.jpg -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-mdpi/portrait.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-mdpi/portrait.jpeg -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-mdpi/portrait_girl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-mdpi/portrait_girl.jpg -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-mdpi/super_resolution.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-mdpi/super_resolution.jpeg -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/app/src/test/java/com/baidu/litekit/demo/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/app/src/test/java/com/baidu/litekit/demo/ExampleUnitTest.java -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/build.gradle -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/gradle.properties -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/gradlew -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/LiteKitDemo/gradlew.bat -------------------------------------------------------------------------------- /LiteKitDemo/Android/LiteKitDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "LiteKit" -------------------------------------------------------------------------------- /LiteKitDemo/Android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/Android/README.md -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/AppDelegate.h -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/AppDelegate.mm -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/HandGesture/HandGestureImageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/HandGesture/HandGestureImageViewController.h -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/HandGesture/HandGestureImageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/HandGesture/HandGestureImageViewController.m -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/HandGesture/HandGestureRecognizeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/HandGesture/HandGestureRecognizeView.h -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/HandGesture/HandGestureRecognizeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/HandGesture/HandGestureRecognizeView.m -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/HandGesture/HandGestureViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/HandGesture/HandGestureViewController.h -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/HandGesture/HandGestureViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/HandGesture/HandGestureViewController.m -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/Info.plist -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/LiteKitDemo-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/LiteKitDemo-Bridging-Header.h -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/OCR/LiteKitOCRView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/OCR/LiteKitOCRView.h -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/OCR/LiteKitOCRView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/OCR/LiteKitOCRView.m -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/OCR/LiteKitOCRViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/OCR/LiteKitOCRViewController.h -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/OCR/LiteKitOCRViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/OCR/LiteKitOCRViewController.mm -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/OCR/LiteKitPhotoSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/OCR/LiteKitPhotoSelector.h -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/OCR/LiteKitPhotoSelector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/OCR/LiteKitPhotoSelector.m -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/Segmentation/SegmentationImageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/Segmentation/SegmentationImageViewController.h -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/Segmentation/SegmentationImageViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/Segmentation/SegmentationImageViewController.mm -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/Segmentation/SegmentationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/Segmentation/SegmentationViewController.h -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/Segmentation/SegmentationViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/Segmentation/SegmentationViewController.mm -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/SuperResolution/SuperResolutionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/SuperResolution/SuperResolutionViewController.h -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/SuperResolution/SuperResolutionViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/SuperResolution/SuperResolutionViewController.mm -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/ViewController.h -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/ViewController.m -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/base/BaseDetectView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/base/BaseDetectView.h -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/base/BaseDetectView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/base/BaseDetectView.m -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/base/BaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/base/BaseViewController.h -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/base/BaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/base/BaseViewController.m -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/litekit-swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/litekit-swift.swift -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/main.m -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/resource/bg_gesture.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/resource/bg_gesture.jpeg -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/resource/bg_ocr.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/resource/bg_ocr.jpeg -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/resource/bg_portrait.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/resource/bg_portrait.jpeg -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/resource/bg_super_resolution.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/resource/bg_super_resolution.jpeg -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/resource/test-HandGesture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/resource/test-HandGesture.jpg -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/resource/test-SuperResolution.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/resource/test-SuperResolution.jpeg -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/resource/test_OCR_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/resource/test_OCR_0.jpg -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/resource/test_PortraitSegmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/LiteKitDemo/resource/test_PortraitSegmentation.png -------------------------------------------------------------------------------- /LiteKitDemo/iOS/LiteKitDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/LiteKitDemo/iOS/LiteKitDemo/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/README.md -------------------------------------------------------------------------------- /tools/codestyle/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools/codestyle/clang_format.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/tools/codestyle/clang_format.hook -------------------------------------------------------------------------------- /tools/codestyle/copyright.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/tools/codestyle/copyright.hook -------------------------------------------------------------------------------- /tools/codestyle/cpplint_pre_commit.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/tools/codestyle/cpplint_pre_commit.hook -------------------------------------------------------------------------------- /tools/codestyle/docstring_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/tools/codestyle/docstring_checker.py -------------------------------------------------------------------------------- /tools/codestyle/pylint_pre_commit.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/tools/codestyle/pylint_pre_commit.hook -------------------------------------------------------------------------------- /tools/codestyle/test_docstring_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaddlePaddle/LiteKit/HEAD/tools/codestyle/test_docstring_checker.py --------------------------------------------------------------------------------