├── .gitignore ├── CMakeLists.txt ├── README.md ├── deps ├── cv-uni-text │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── cvUniText.cpp │ ├── cvUniText.hpp │ ├── install │ │ ├── cvUniText.hpp │ │ ├── libcvunitext.a │ │ └── wqy-microhei.ttc │ ├── test.cpp │ ├── utf8.h │ └── utf8 │ │ ├── checked.h │ │ ├── core.h │ │ └── unchecked.h └── ncnn │ ├── include │ └── ncnn │ │ ├── allocator.h │ │ ├── benchmark.h │ │ ├── blob.h │ │ ├── command.h │ │ ├── cpu.h │ │ ├── gpu.h │ │ ├── layer.h │ │ ├── layer_type.h │ │ ├── layer_type_enum.h │ │ ├── mat.h │ │ ├── modelbin.h │ │ ├── net.h │ │ ├── opencv.h │ │ ├── option.h │ │ ├── paramdict.h │ │ ├── pipeline.h │ │ └── platform.h │ └── lib │ ├── cmake │ └── ncnn │ │ ├── ncnn-release.cmake │ │ ├── ncnn.cmake │ │ └── ncnnConfig.cmake │ └── libncnn.a ├── example ├── CMakeLists.txt ├── android-example │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── mobilelpr │ │ │ │ └── demo │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ │ └── lpr │ │ │ │ │ ├── det1-opt.bin │ │ │ │ │ ├── det1-opt.param │ │ │ │ │ ├── det1-opt.table │ │ │ │ │ ├── det2-opt.bin │ │ │ │ │ ├── det2-opt.param │ │ │ │ │ ├── det2-opt.table │ │ │ │ │ ├── det3-opt.bin │ │ │ │ │ ├── det3-opt.param │ │ │ │ │ ├── det3-opt.table │ │ │ │ │ ├── lffd-opt.bin │ │ │ │ │ ├── lffd-opt.param │ │ │ │ │ ├── lpc-opt.bin │ │ │ │ │ ├── lpc-opt.param │ │ │ │ │ ├── lpc-opt.table │ │ │ │ │ ├── lpr-opt.bin │ │ │ │ │ ├── lpr-opt.param │ │ │ │ │ ├── lpr-opt.table │ │ │ │ │ ├── mssd512_voc-opt.bin │ │ │ │ │ ├── mssd512_voc-opt.param │ │ │ │ │ └── mssd512_voc-opt.table │ │ │ ├── cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── JniExport.cpp │ │ │ │ ├── lpr │ │ │ │ │ ├── LPRExport.cpp │ │ │ │ │ ├── base.cpp │ │ │ │ │ ├── base.h │ │ │ │ │ ├── detector │ │ │ │ │ │ ├── align_plate_detector.cpp │ │ │ │ │ │ ├── align_plate_detector.h │ │ │ │ │ │ ├── lffd.cpp │ │ │ │ │ │ ├── lffd.h │ │ │ │ │ │ ├── lffd_plate_detector.cpp │ │ │ │ │ │ ├── mtcnn_align.cpp │ │ │ │ │ │ ├── mtcnn_align.h │ │ │ │ │ │ ├── mtcnn_base.cpp │ │ │ │ │ │ ├── mtcnn_base.h │ │ │ │ │ │ ├── mtcnn_plate_detector.cpp │ │ │ │ │ │ ├── mtcnn_proposal.cpp │ │ │ │ │ │ ├── mtcnn_proposal.h │ │ │ │ │ │ └── ssd_plate_detector.cpp │ │ │ │ │ ├── include │ │ │ │ │ │ ├── detector_creator.h │ │ │ │ │ │ ├── lpc_recognizer.h │ │ │ │ │ │ ├── lpr_recognizer.h │ │ │ │ │ │ ├── plate_detector.h │ │ │ │ │ │ ├── plate_detectors.h │ │ │ │ │ │ ├── plate_info.h │ │ │ │ │ │ └── plate_recognizers.h │ │ │ │ │ ├── label.h │ │ │ │ │ ├── lpc_recognizer.cpp │ │ │ │ │ ├── lpr_recognizer.cpp │ │ │ │ │ └── plate_detector.cpp │ │ │ │ └── ncnnvulkan │ │ │ │ │ ├── arm64-v8a │ │ │ │ │ ├── libOGLCompiler.a │ │ │ │ │ ├── libOSDependent.a │ │ │ │ │ ├── libSPIRV.a │ │ │ │ │ ├── libglslang.a │ │ │ │ │ └── libncnn.a │ │ │ │ │ ├── armeabi-v7a │ │ │ │ │ ├── libOGLCompiler.a │ │ │ │ │ ├── libOSDependent.a │ │ │ │ │ ├── libSPIRV.a │ │ │ │ │ ├── libglslang.a │ │ │ │ │ └── libncnn.a │ │ │ │ │ ├── include │ │ │ │ │ ├── SPIRV │ │ │ │ │ │ ├── GLSL.ext.AMD.h │ │ │ │ │ │ ├── GLSL.ext.EXT.h │ │ │ │ │ │ ├── GLSL.ext.KHR.h │ │ │ │ │ │ ├── GLSL.ext.NV.h │ │ │ │ │ │ ├── GLSL.std.450.h │ │ │ │ │ │ ├── GlslangToSpv.h │ │ │ │ │ │ ├── Logger.h │ │ │ │ │ │ ├── NonSemanticDebugPrintf.h │ │ │ │ │ │ ├── SPVRemapper.h │ │ │ │ │ │ ├── SpvBuilder.h │ │ │ │ │ │ ├── SpvTools.h │ │ │ │ │ │ ├── bitutils.h │ │ │ │ │ │ ├── disassemble.h │ │ │ │ │ │ ├── doc.h │ │ │ │ │ │ ├── hex_float.h │ │ │ │ │ │ ├── spirv.hpp │ │ │ │ │ │ └── spvIR.h │ │ │ │ │ ├── glslang │ │ │ │ │ │ ├── Include │ │ │ │ │ │ │ ├── BaseTypes.h │ │ │ │ │ │ │ ├── Common.h │ │ │ │ │ │ │ ├── ConstantUnion.h │ │ │ │ │ │ │ ├── InfoSink.h │ │ │ │ │ │ │ ├── InitializeGlobals.h │ │ │ │ │ │ │ ├── PoolAlloc.h │ │ │ │ │ │ │ ├── ResourceLimits.h │ │ │ │ │ │ │ ├── ShHandle.h │ │ │ │ │ │ │ ├── Types.h │ │ │ │ │ │ │ ├── arrays.h │ │ │ │ │ │ │ ├── glslang_c_interface.h │ │ │ │ │ │ │ ├── glslang_c_shader_types.h │ │ │ │ │ │ │ ├── intermediate.h │ │ │ │ │ │ │ └── revision.h │ │ │ │ │ │ ├── MachineIndependent │ │ │ │ │ │ │ ├── Initialize.h │ │ │ │ │ │ │ ├── LiveTraverser.h │ │ │ │ │ │ │ ├── ParseHelper.h │ │ │ │ │ │ │ ├── RemoveTree.h │ │ │ │ │ │ │ ├── Scan.h │ │ │ │ │ │ │ ├── ScanContext.h │ │ │ │ │ │ │ ├── SymbolTable.h │ │ │ │ │ │ │ ├── Versions.h │ │ │ │ │ │ │ ├── attribute.h │ │ │ │ │ │ │ ├── gl_types.h │ │ │ │ │ │ │ ├── glslang_tab.cpp.h │ │ │ │ │ │ │ ├── iomapper.h │ │ │ │ │ │ │ ├── localintermediate.h │ │ │ │ │ │ │ ├── parseVersions.h │ │ │ │ │ │ │ ├── preprocessor │ │ │ │ │ │ │ │ ├── PpContext.h │ │ │ │ │ │ │ │ └── PpTokens.h │ │ │ │ │ │ │ ├── propagateNoContraction.h │ │ │ │ │ │ │ └── reflection.h │ │ │ │ │ │ ├── Public │ │ │ │ │ │ │ └── ShaderLang.h │ │ │ │ │ │ └── SPIRV │ │ │ │ │ │ │ ├── GLSL.ext.AMD.h │ │ │ │ │ │ │ ├── GLSL.ext.EXT.h │ │ │ │ │ │ │ ├── GLSL.ext.KHR.h │ │ │ │ │ │ │ ├── GLSL.ext.NV.h │ │ │ │ │ │ │ ├── GLSL.std.450.h │ │ │ │ │ │ │ ├── GlslangToSpv.h │ │ │ │ │ │ │ ├── Logger.h │ │ │ │ │ │ │ ├── NonSemanticDebugPrintf.h │ │ │ │ │ │ │ ├── SPVRemapper.h │ │ │ │ │ │ │ ├── SpvBuilder.h │ │ │ │ │ │ │ ├── SpvTools.h │ │ │ │ │ │ │ ├── bitutils.h │ │ │ │ │ │ │ ├── disassemble.h │ │ │ │ │ │ │ ├── doc.h │ │ │ │ │ │ │ ├── hex_float.h │ │ │ │ │ │ │ ├── spirv.hpp │ │ │ │ │ │ │ └── spvIR.h │ │ │ │ │ └── ncnn │ │ │ │ │ │ ├── allocator.h │ │ │ │ │ │ ├── benchmark.h │ │ │ │ │ │ ├── blob.h │ │ │ │ │ │ ├── c_api.h │ │ │ │ │ │ ├── command.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── datareader.h │ │ │ │ │ │ ├── gpu.h │ │ │ │ │ │ ├── layer.h │ │ │ │ │ │ ├── layer_shader_type.h │ │ │ │ │ │ ├── layer_shader_type_enum.h │ │ │ │ │ │ ├── layer_type.h │ │ │ │ │ │ ├── layer_type_enum.h │ │ │ │ │ │ ├── mat.h │ │ │ │ │ │ ├── modelbin.h │ │ │ │ │ │ ├── net.h │ │ │ │ │ │ ├── opencv.h │ │ │ │ │ │ ├── option.h │ │ │ │ │ │ ├── paramdict.h │ │ │ │ │ │ ├── pipeline.h │ │ │ │ │ │ ├── pipelinecache.h │ │ │ │ │ │ ├── platform.h │ │ │ │ │ │ └── simplestl.h │ │ │ │ │ ├── x86 │ │ │ │ │ ├── libOGLCompiler.a │ │ │ │ │ ├── libOSDependent.a │ │ │ │ │ ├── libSPIRV.a │ │ │ │ │ ├── libglslang.a │ │ │ │ │ └── libncnn.a │ │ │ │ │ └── x86_64 │ │ │ │ │ ├── libOGLCompiler.a │ │ │ │ │ ├── libOSDependent.a │ │ │ │ │ ├── libSPIRV.a │ │ │ │ │ ├── libglslang.a │ │ │ │ │ └── libncnn.a │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── mobilelpr │ │ │ │ │ └── demo │ │ │ │ │ ├── AppCrashHandler.java │ │ │ │ │ ├── IDetector.java │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── MobileLPR.java │ │ │ │ │ ├── NcnnApp.java │ │ │ │ │ ├── PlateResult.java │ │ │ │ │ └── UriTools.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── actionbar_dark_back_icon.png │ │ │ │ ├── cpu.png │ │ │ │ ├── cpu_white.png │ │ │ │ ├── gpu.png │ │ │ │ ├── gpu_white.png │ │ │ │ ├── logo.png │ │ │ │ └── ohhh.png │ │ │ │ ├── drawable │ │ │ │ ├── cpu_gpu_bg.xml │ │ │ │ └── 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 │ │ │ └── mobilelpr │ │ │ └── demo │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── main.cpp ├── image ├── flow.jpg ├── lffd-plate.png ├── logo.png ├── manys.jpeg ├── mtcnn-plate.png ├── muti-angle.jpg ├── plate.png ├── quantize-mtcnn-plate.png ├── ssd-plate.png ├── vehicle-plate.jpg ├── vehicle-plate2.jpg └── vehicle-plate3.jpg ├── include ├── detector_creator.h ├── lpc_recognizer.h ├── lpr_recognizer.h ├── plate_detectors.h ├── plate_info.h ├── plate_petector.h └── plate_recognizers.h ├── models ├── caffe │ ├── det1.caffemodel │ ├── det1.prototxt │ ├── det2.caffemodel │ ├── det2.prototxt │ ├── det3.caffemodel │ └── det3.prototxt ├── float │ ├── det1.bin │ ├── det1.param │ ├── det2.bin │ ├── det2.param │ ├── det3.bin │ ├── det3.param │ ├── lffd.bin │ ├── lffd.param │ ├── lpc.bin │ ├── lpc.param │ ├── lpr.bin │ ├── lpr.param │ ├── mssd512_voc.bin │ └── mssd512_voc.param ├── optimize │ ├── det1-opt.bin │ ├── det1-opt.param │ ├── det1-opt.table │ ├── det2-opt.bin │ ├── det2-opt.param │ ├── det2-opt.table │ ├── det3-opt.bin │ ├── det3-opt.param │ ├── det3-opt.table │ ├── lpc-opt.bin │ ├── lpc-opt.param │ ├── lpc-opt.table │ ├── lpr-opt.bin │ ├── lpr-opt.param │ ├── lpr-opt.table │ ├── mssd512_voc-opt.bin │ ├── mssd512_voc-opt.param │ └── mssd512_voc-opt.table └── quantize │ ├── det1-int8.bin │ ├── det1-int8.param │ ├── det2-int8.bin │ ├── det2-int8.param │ ├── det3-int8.bin │ ├── det3-int8.param │ ├── lpc-int8.bin │ ├── lpc-int8.param │ ├── lpr-int8.bin │ ├── lpr-int8.param │ ├── mssd512_voc-int8.bin │ └── mssd512_voc-int8.param └── src ├── CMakeLists.txt ├── base.cpp ├── base.h ├── detector ├── align_plate_detector.cpp ├── align_plate_detector.h ├── lffd.cpp ├── lffd.h ├── lffd_plate_detector.cpp ├── mtcnn_align.cpp ├── mtcnn_align.h ├── mtcnn_base.cpp ├── mtcnn_base.h ├── mtcnn_plate_detector.cpp ├── mtcnn_proposal.cpp ├── mtcnn_proposal.h └── ssd_plate_detector.cpp ├── label.h ├── lpc_recognizer.cpp ├── lpr_recognizer.cpp └── plate_petector.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/README.md -------------------------------------------------------------------------------- /deps/cv-uni-text/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/cv-uni-text/.gitignore -------------------------------------------------------------------------------- /deps/cv-uni-text/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/cv-uni-text/CMakeLists.txt -------------------------------------------------------------------------------- /deps/cv-uni-text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/cv-uni-text/README.md -------------------------------------------------------------------------------- /deps/cv-uni-text/cvUniText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/cv-uni-text/cvUniText.cpp -------------------------------------------------------------------------------- /deps/cv-uni-text/cvUniText.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/cv-uni-text/cvUniText.hpp -------------------------------------------------------------------------------- /deps/cv-uni-text/install/cvUniText.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/cv-uni-text/install/cvUniText.hpp -------------------------------------------------------------------------------- /deps/cv-uni-text/install/libcvunitext.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/cv-uni-text/install/libcvunitext.a -------------------------------------------------------------------------------- /deps/cv-uni-text/install/wqy-microhei.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/cv-uni-text/install/wqy-microhei.ttc -------------------------------------------------------------------------------- /deps/cv-uni-text/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/cv-uni-text/test.cpp -------------------------------------------------------------------------------- /deps/cv-uni-text/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/cv-uni-text/utf8.h -------------------------------------------------------------------------------- /deps/cv-uni-text/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/cv-uni-text/utf8/checked.h -------------------------------------------------------------------------------- /deps/cv-uni-text/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/cv-uni-text/utf8/core.h -------------------------------------------------------------------------------- /deps/cv-uni-text/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/cv-uni-text/utf8/unchecked.h -------------------------------------------------------------------------------- /deps/ncnn/include/ncnn/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/ncnn/include/ncnn/allocator.h -------------------------------------------------------------------------------- /deps/ncnn/include/ncnn/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/ncnn/include/ncnn/benchmark.h -------------------------------------------------------------------------------- /deps/ncnn/include/ncnn/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/ncnn/include/ncnn/blob.h -------------------------------------------------------------------------------- /deps/ncnn/include/ncnn/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/ncnn/include/ncnn/command.h -------------------------------------------------------------------------------- /deps/ncnn/include/ncnn/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/ncnn/include/ncnn/cpu.h -------------------------------------------------------------------------------- /deps/ncnn/include/ncnn/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/ncnn/include/ncnn/gpu.h -------------------------------------------------------------------------------- /deps/ncnn/include/ncnn/layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/ncnn/include/ncnn/layer.h -------------------------------------------------------------------------------- /deps/ncnn/include/ncnn/layer_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/ncnn/include/ncnn/layer_type.h -------------------------------------------------------------------------------- /deps/ncnn/include/ncnn/layer_type_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/ncnn/include/ncnn/layer_type_enum.h -------------------------------------------------------------------------------- /deps/ncnn/include/ncnn/mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/ncnn/include/ncnn/mat.h -------------------------------------------------------------------------------- /deps/ncnn/include/ncnn/modelbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/ncnn/include/ncnn/modelbin.h -------------------------------------------------------------------------------- /deps/ncnn/include/ncnn/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/ncnn/include/ncnn/net.h -------------------------------------------------------------------------------- /deps/ncnn/include/ncnn/opencv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/ncnn/include/ncnn/opencv.h -------------------------------------------------------------------------------- /deps/ncnn/include/ncnn/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/ncnn/include/ncnn/option.h -------------------------------------------------------------------------------- /deps/ncnn/include/ncnn/paramdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/ncnn/include/ncnn/paramdict.h -------------------------------------------------------------------------------- /deps/ncnn/include/ncnn/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/ncnn/include/ncnn/pipeline.h -------------------------------------------------------------------------------- /deps/ncnn/include/ncnn/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/ncnn/include/ncnn/platform.h -------------------------------------------------------------------------------- /deps/ncnn/lib/cmake/ncnn/ncnn-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/ncnn/lib/cmake/ncnn/ncnn-release.cmake -------------------------------------------------------------------------------- /deps/ncnn/lib/cmake/ncnn/ncnn.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/ncnn/lib/cmake/ncnn/ncnn.cmake -------------------------------------------------------------------------------- /deps/ncnn/lib/cmake/ncnn/ncnnConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/ncnn/lib/cmake/ncnn/ncnnConfig.cmake -------------------------------------------------------------------------------- /deps/ncnn/lib/libncnn.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/deps/ncnn/lib/libncnn.a -------------------------------------------------------------------------------- /example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/CMakeLists.txt -------------------------------------------------------------------------------- /example/android-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/.gitignore -------------------------------------------------------------------------------- /example/android-example/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/LICENSE -------------------------------------------------------------------------------- /example/android-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/README.md -------------------------------------------------------------------------------- /example/android-example/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /example/android-example/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/build.gradle -------------------------------------------------------------------------------- /example/android-example/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android-example/app/src/androidTest/java/com/mobilelpr/demo/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/androidTest/java/com/mobilelpr/demo/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /example/android-example/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android-example/app/src/main/assets/lpr/det1-opt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/assets/lpr/det1-opt.bin -------------------------------------------------------------------------------- /example/android-example/app/src/main/assets/lpr/det1-opt.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/assets/lpr/det1-opt.param -------------------------------------------------------------------------------- /example/android-example/app/src/main/assets/lpr/det1-opt.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/assets/lpr/det1-opt.table -------------------------------------------------------------------------------- /example/android-example/app/src/main/assets/lpr/det2-opt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/assets/lpr/det2-opt.bin -------------------------------------------------------------------------------- /example/android-example/app/src/main/assets/lpr/det2-opt.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/assets/lpr/det2-opt.param -------------------------------------------------------------------------------- /example/android-example/app/src/main/assets/lpr/det2-opt.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/assets/lpr/det2-opt.table -------------------------------------------------------------------------------- /example/android-example/app/src/main/assets/lpr/det3-opt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/assets/lpr/det3-opt.bin -------------------------------------------------------------------------------- /example/android-example/app/src/main/assets/lpr/det3-opt.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/assets/lpr/det3-opt.param -------------------------------------------------------------------------------- /example/android-example/app/src/main/assets/lpr/det3-opt.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/assets/lpr/det3-opt.table -------------------------------------------------------------------------------- /example/android-example/app/src/main/assets/lpr/lffd-opt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/assets/lpr/lffd-opt.bin -------------------------------------------------------------------------------- /example/android-example/app/src/main/assets/lpr/lffd-opt.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/assets/lpr/lffd-opt.param -------------------------------------------------------------------------------- /example/android-example/app/src/main/assets/lpr/lpc-opt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/assets/lpr/lpc-opt.bin -------------------------------------------------------------------------------- /example/android-example/app/src/main/assets/lpr/lpc-opt.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/assets/lpr/lpc-opt.param -------------------------------------------------------------------------------- /example/android-example/app/src/main/assets/lpr/lpc-opt.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/assets/lpr/lpc-opt.table -------------------------------------------------------------------------------- /example/android-example/app/src/main/assets/lpr/lpr-opt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/assets/lpr/lpr-opt.bin -------------------------------------------------------------------------------- /example/android-example/app/src/main/assets/lpr/lpr-opt.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/assets/lpr/lpr-opt.param -------------------------------------------------------------------------------- /example/android-example/app/src/main/assets/lpr/lpr-opt.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/assets/lpr/lpr-opt.table -------------------------------------------------------------------------------- /example/android-example/app/src/main/assets/lpr/mssd512_voc-opt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/assets/lpr/mssd512_voc-opt.bin -------------------------------------------------------------------------------- /example/android-example/app/src/main/assets/lpr/mssd512_voc-opt.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/assets/lpr/mssd512_voc-opt.param -------------------------------------------------------------------------------- /example/android-example/app/src/main/assets/lpr/mssd512_voc-opt.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/assets/lpr/mssd512_voc-opt.table -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/JniExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/JniExport.cpp -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/LPRExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/LPRExport.cpp -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/base.cpp -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/base.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/detector/align_plate_detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/detector/align_plate_detector.cpp -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/detector/align_plate_detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/detector/align_plate_detector.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/detector/lffd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/detector/lffd.cpp -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/detector/lffd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/detector/lffd.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/detector/lffd_plate_detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/detector/lffd_plate_detector.cpp -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/detector/mtcnn_align.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/detector/mtcnn_align.cpp -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/detector/mtcnn_align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/detector/mtcnn_align.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/detector/mtcnn_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/detector/mtcnn_base.cpp -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/detector/mtcnn_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/detector/mtcnn_base.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/detector/mtcnn_plate_detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/detector/mtcnn_plate_detector.cpp -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/detector/mtcnn_proposal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/detector/mtcnn_proposal.cpp -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/detector/mtcnn_proposal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/detector/mtcnn_proposal.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/detector/ssd_plate_detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/detector/ssd_plate_detector.cpp -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/include/detector_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/include/detector_creator.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/include/lpc_recognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/include/lpc_recognizer.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/include/lpr_recognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/include/lpr_recognizer.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/include/plate_detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/include/plate_detector.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/include/plate_detectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/include/plate_detectors.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/include/plate_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/include/plate_info.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/include/plate_recognizers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/include/plate_recognizers.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/label.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/lpc_recognizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/lpc_recognizer.cpp -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/lpr_recognizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/lpr_recognizer.cpp -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/lpr/plate_detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/lpr/plate_detector.cpp -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/arm64-v8a/libOGLCompiler.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/arm64-v8a/libOGLCompiler.a -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/arm64-v8a/libOSDependent.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/arm64-v8a/libOSDependent.a -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/arm64-v8a/libSPIRV.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/arm64-v8a/libSPIRV.a -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/arm64-v8a/libglslang.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/arm64-v8a/libglslang.a -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/arm64-v8a/libncnn.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/arm64-v8a/libncnn.a -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/armeabi-v7a/libOGLCompiler.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/armeabi-v7a/libOGLCompiler.a -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/armeabi-v7a/libOSDependent.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/armeabi-v7a/libOSDependent.a -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/armeabi-v7a/libSPIRV.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/armeabi-v7a/libSPIRV.a -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/armeabi-v7a/libglslang.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/armeabi-v7a/libglslang.a -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/armeabi-v7a/libncnn.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/armeabi-v7a/libncnn.a -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/GLSL.ext.AMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/GLSL.ext.AMD.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/GLSL.ext.EXT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/GLSL.ext.EXT.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/GLSL.ext.KHR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/GLSL.ext.KHR.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/GLSL.ext.NV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/GLSL.ext.NV.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/GLSL.std.450.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/GLSL.std.450.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/GlslangToSpv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/GlslangToSpv.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/Logger.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/NonSemanticDebugPrintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/NonSemanticDebugPrintf.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/SPVRemapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/SPVRemapper.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/SpvBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/SpvBuilder.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/SpvTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/SpvTools.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/bitutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/bitutils.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/disassemble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/disassemble.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/doc.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/hex_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/hex_float.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/spirv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/spirv.hpp -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/spvIR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/SPIRV/spvIR.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/BaseTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/BaseTypes.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/Common.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/ConstantUnion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/ConstantUnion.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/InfoSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/InfoSink.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/InitializeGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/InitializeGlobals.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/PoolAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/PoolAlloc.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/ResourceLimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/ResourceLimits.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/ShHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/ShHandle.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/Types.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/arrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/arrays.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/glslang_c_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/glslang_c_interface.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/glslang_c_shader_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/glslang_c_shader_types.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/intermediate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/intermediate.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Include/revision.h: -------------------------------------------------------------------------------- 1 | // This header is generated by the make-revision script. 2 | 3 | #define GLSLANG_PATCH_LEVEL 3766 4 | -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/Initialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/Initialize.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/LiveTraverser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/LiveTraverser.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/ParseHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/ParseHelper.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/RemoveTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/RemoveTree.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/Scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/Scan.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/ScanContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/ScanContext.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/SymbolTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/SymbolTable.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/Versions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/Versions.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/attribute.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/gl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/gl_types.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/glslang_tab.cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/glslang_tab.cpp.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/iomapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/iomapper.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/localintermediate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/localintermediate.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/parseVersions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/parseVersions.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/preprocessor/PpContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/preprocessor/PpContext.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/preprocessor/PpTokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/preprocessor/PpTokens.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/propagateNoContraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/propagateNoContraction.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/MachineIndependent/reflection.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Public/ShaderLang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/Public/ShaderLang.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/GLSL.ext.AMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/GLSL.ext.AMD.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/GLSL.ext.EXT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/GLSL.ext.EXT.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/GLSL.ext.KHR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/GLSL.ext.KHR.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/GLSL.ext.NV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/GLSL.ext.NV.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/GLSL.std.450.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/GLSL.std.450.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/GlslangToSpv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/GlslangToSpv.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/Logger.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/NonSemanticDebugPrintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/NonSemanticDebugPrintf.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/SPVRemapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/SPVRemapper.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/SpvBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/SpvBuilder.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/SpvTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/SpvTools.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/bitutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/bitutils.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/disassemble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/disassemble.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/doc.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/hex_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/hex_float.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/spirv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/spirv.hpp -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/spvIR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/glslang/SPIRV/spvIR.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/allocator.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/benchmark.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/blob.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/c_api.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/command.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/cpu.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/datareader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/datareader.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/gpu.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/layer.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/layer_shader_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/layer_shader_type.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/layer_shader_type_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/layer_shader_type_enum.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/layer_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/layer_type.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/layer_type_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/layer_type_enum.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/mat.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/modelbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/modelbin.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/net.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/opencv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/opencv.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/option.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/paramdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/paramdict.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/pipeline.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/pipelinecache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/pipelinecache.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/platform.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/simplestl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/include/ncnn/simplestl.h -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/x86/libOGLCompiler.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/x86/libOGLCompiler.a -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/x86/libOSDependent.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/x86/libOSDependent.a -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/x86/libSPIRV.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/x86/libSPIRV.a -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/x86/libglslang.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/x86/libglslang.a -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/x86/libncnn.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/x86/libncnn.a -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/x86_64/libOGLCompiler.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/x86_64/libOGLCompiler.a -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/x86_64/libOSDependent.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/x86_64/libOSDependent.a -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/x86_64/libSPIRV.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/x86_64/libSPIRV.a -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/x86_64/libglslang.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/x86_64/libglslang.a -------------------------------------------------------------------------------- /example/android-example/app/src/main/cpp/ncnnvulkan/x86_64/libncnn.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/cpp/ncnnvulkan/x86_64/libncnn.a -------------------------------------------------------------------------------- /example/android-example/app/src/main/java/com/mobilelpr/demo/AppCrashHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/java/com/mobilelpr/demo/AppCrashHandler.java -------------------------------------------------------------------------------- /example/android-example/app/src/main/java/com/mobilelpr/demo/IDetector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/java/com/mobilelpr/demo/IDetector.java -------------------------------------------------------------------------------- /example/android-example/app/src/main/java/com/mobilelpr/demo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/java/com/mobilelpr/demo/MainActivity.java -------------------------------------------------------------------------------- /example/android-example/app/src/main/java/com/mobilelpr/demo/MobileLPR.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/java/com/mobilelpr/demo/MobileLPR.java -------------------------------------------------------------------------------- /example/android-example/app/src/main/java/com/mobilelpr/demo/NcnnApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/java/com/mobilelpr/demo/NcnnApp.java -------------------------------------------------------------------------------- /example/android-example/app/src/main/java/com/mobilelpr/demo/PlateResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/java/com/mobilelpr/demo/PlateResult.java -------------------------------------------------------------------------------- /example/android-example/app/src/main/java/com/mobilelpr/demo/UriTools.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/java/com/mobilelpr/demo/UriTools.java -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/drawable-xxhdpi/actionbar_dark_back_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/drawable-xxhdpi/actionbar_dark_back_icon.png -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/drawable-xxhdpi/cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/drawable-xxhdpi/cpu.png -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/drawable-xxhdpi/cpu_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/drawable-xxhdpi/cpu_white.png -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/drawable-xxhdpi/gpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/drawable-xxhdpi/gpu.png -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/drawable-xxhdpi/gpu_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/drawable-xxhdpi/gpu_white.png -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/drawable-xxhdpi/ohhh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/drawable-xxhdpi/ohhh.png -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/drawable/cpu_gpu_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/drawable/cpu_gpu_bg.xml -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android-example/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android-example/app/src/test/java/com/mobilelpr/demo/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/app/src/test/java/com/mobilelpr/demo/ExampleUnitTest.java -------------------------------------------------------------------------------- /example/android-example/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/build.gradle -------------------------------------------------------------------------------- /example/android-example/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/gradle.properties -------------------------------------------------------------------------------- /example/android-example/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android-example/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android-example/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/gradlew -------------------------------------------------------------------------------- /example/android-example/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/android-example/gradlew.bat -------------------------------------------------------------------------------- /example/android-example/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='AndroidLPR' 3 | -------------------------------------------------------------------------------- /example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/example/main.cpp -------------------------------------------------------------------------------- /image/flow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/image/flow.jpg -------------------------------------------------------------------------------- /image/lffd-plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/image/lffd-plate.png -------------------------------------------------------------------------------- /image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/image/logo.png -------------------------------------------------------------------------------- /image/manys.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/image/manys.jpeg -------------------------------------------------------------------------------- /image/mtcnn-plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/image/mtcnn-plate.png -------------------------------------------------------------------------------- /image/muti-angle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/image/muti-angle.jpg -------------------------------------------------------------------------------- /image/plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/image/plate.png -------------------------------------------------------------------------------- /image/quantize-mtcnn-plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/image/quantize-mtcnn-plate.png -------------------------------------------------------------------------------- /image/ssd-plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/image/ssd-plate.png -------------------------------------------------------------------------------- /image/vehicle-plate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/image/vehicle-plate.jpg -------------------------------------------------------------------------------- /image/vehicle-plate2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/image/vehicle-plate2.jpg -------------------------------------------------------------------------------- /image/vehicle-plate3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/image/vehicle-plate3.jpg -------------------------------------------------------------------------------- /include/detector_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/include/detector_creator.h -------------------------------------------------------------------------------- /include/lpc_recognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/include/lpc_recognizer.h -------------------------------------------------------------------------------- /include/lpr_recognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/include/lpr_recognizer.h -------------------------------------------------------------------------------- /include/plate_detectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/include/plate_detectors.h -------------------------------------------------------------------------------- /include/plate_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/include/plate_info.h -------------------------------------------------------------------------------- /include/plate_petector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/include/plate_petector.h -------------------------------------------------------------------------------- /include/plate_recognizers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/include/plate_recognizers.h -------------------------------------------------------------------------------- /models/caffe/det1.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/caffe/det1.caffemodel -------------------------------------------------------------------------------- /models/caffe/det1.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/caffe/det1.prototxt -------------------------------------------------------------------------------- /models/caffe/det2.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/caffe/det2.caffemodel -------------------------------------------------------------------------------- /models/caffe/det2.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/caffe/det2.prototxt -------------------------------------------------------------------------------- /models/caffe/det3.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/caffe/det3.caffemodel -------------------------------------------------------------------------------- /models/caffe/det3.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/caffe/det3.prototxt -------------------------------------------------------------------------------- /models/float/det1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/float/det1.bin -------------------------------------------------------------------------------- /models/float/det1.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/float/det1.param -------------------------------------------------------------------------------- /models/float/det2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/float/det2.bin -------------------------------------------------------------------------------- /models/float/det2.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/float/det2.param -------------------------------------------------------------------------------- /models/float/det3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/float/det3.bin -------------------------------------------------------------------------------- /models/float/det3.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/float/det3.param -------------------------------------------------------------------------------- /models/float/lffd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/float/lffd.bin -------------------------------------------------------------------------------- /models/float/lffd.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/float/lffd.param -------------------------------------------------------------------------------- /models/float/lpc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/float/lpc.bin -------------------------------------------------------------------------------- /models/float/lpc.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/float/lpc.param -------------------------------------------------------------------------------- /models/float/lpr.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/float/lpr.bin -------------------------------------------------------------------------------- /models/float/lpr.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/float/lpr.param -------------------------------------------------------------------------------- /models/float/mssd512_voc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/float/mssd512_voc.bin -------------------------------------------------------------------------------- /models/float/mssd512_voc.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/float/mssd512_voc.param -------------------------------------------------------------------------------- /models/optimize/det1-opt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/optimize/det1-opt.bin -------------------------------------------------------------------------------- /models/optimize/det1-opt.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/optimize/det1-opt.param -------------------------------------------------------------------------------- /models/optimize/det1-opt.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/optimize/det1-opt.table -------------------------------------------------------------------------------- /models/optimize/det2-opt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/optimize/det2-opt.bin -------------------------------------------------------------------------------- /models/optimize/det2-opt.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/optimize/det2-opt.param -------------------------------------------------------------------------------- /models/optimize/det2-opt.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/optimize/det2-opt.table -------------------------------------------------------------------------------- /models/optimize/det3-opt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/optimize/det3-opt.bin -------------------------------------------------------------------------------- /models/optimize/det3-opt.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/optimize/det3-opt.param -------------------------------------------------------------------------------- /models/optimize/det3-opt.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/optimize/det3-opt.table -------------------------------------------------------------------------------- /models/optimize/lpc-opt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/optimize/lpc-opt.bin -------------------------------------------------------------------------------- /models/optimize/lpc-opt.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/optimize/lpc-opt.param -------------------------------------------------------------------------------- /models/optimize/lpc-opt.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/optimize/lpc-opt.table -------------------------------------------------------------------------------- /models/optimize/lpr-opt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/optimize/lpr-opt.bin -------------------------------------------------------------------------------- /models/optimize/lpr-opt.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/optimize/lpr-opt.param -------------------------------------------------------------------------------- /models/optimize/lpr-opt.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/optimize/lpr-opt.table -------------------------------------------------------------------------------- /models/optimize/mssd512_voc-opt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/optimize/mssd512_voc-opt.bin -------------------------------------------------------------------------------- /models/optimize/mssd512_voc-opt.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/optimize/mssd512_voc-opt.param -------------------------------------------------------------------------------- /models/optimize/mssd512_voc-opt.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/optimize/mssd512_voc-opt.table -------------------------------------------------------------------------------- /models/quantize/det1-int8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/quantize/det1-int8.bin -------------------------------------------------------------------------------- /models/quantize/det1-int8.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/quantize/det1-int8.param -------------------------------------------------------------------------------- /models/quantize/det2-int8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/quantize/det2-int8.bin -------------------------------------------------------------------------------- /models/quantize/det2-int8.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/quantize/det2-int8.param -------------------------------------------------------------------------------- /models/quantize/det3-int8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/quantize/det3-int8.bin -------------------------------------------------------------------------------- /models/quantize/det3-int8.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/quantize/det3-int8.param -------------------------------------------------------------------------------- /models/quantize/lpc-int8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/quantize/lpc-int8.bin -------------------------------------------------------------------------------- /models/quantize/lpc-int8.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/quantize/lpc-int8.param -------------------------------------------------------------------------------- /models/quantize/lpr-int8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/quantize/lpr-int8.bin -------------------------------------------------------------------------------- /models/quantize/lpr-int8.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/quantize/lpr-int8.param -------------------------------------------------------------------------------- /models/quantize/mssd512_voc-int8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/quantize/mssd512_voc-int8.bin -------------------------------------------------------------------------------- /models/quantize/mssd512_voc-int8.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/models/quantize/mssd512_voc-int8.param -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/src/base.cpp -------------------------------------------------------------------------------- /src/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/src/base.h -------------------------------------------------------------------------------- /src/detector/align_plate_detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/src/detector/align_plate_detector.cpp -------------------------------------------------------------------------------- /src/detector/align_plate_detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/src/detector/align_plate_detector.h -------------------------------------------------------------------------------- /src/detector/lffd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/src/detector/lffd.cpp -------------------------------------------------------------------------------- /src/detector/lffd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/src/detector/lffd.h -------------------------------------------------------------------------------- /src/detector/lffd_plate_detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/src/detector/lffd_plate_detector.cpp -------------------------------------------------------------------------------- /src/detector/mtcnn_align.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/src/detector/mtcnn_align.cpp -------------------------------------------------------------------------------- /src/detector/mtcnn_align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/src/detector/mtcnn_align.h -------------------------------------------------------------------------------- /src/detector/mtcnn_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/src/detector/mtcnn_base.cpp -------------------------------------------------------------------------------- /src/detector/mtcnn_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/src/detector/mtcnn_base.h -------------------------------------------------------------------------------- /src/detector/mtcnn_plate_detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/src/detector/mtcnn_plate_detector.cpp -------------------------------------------------------------------------------- /src/detector/mtcnn_proposal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/src/detector/mtcnn_proposal.cpp -------------------------------------------------------------------------------- /src/detector/mtcnn_proposal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/src/detector/mtcnn_proposal.h -------------------------------------------------------------------------------- /src/detector/ssd_plate_detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/src/detector/ssd_plate_detector.cpp -------------------------------------------------------------------------------- /src/label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/src/label.h -------------------------------------------------------------------------------- /src/lpc_recognizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/src/lpc_recognizer.cpp -------------------------------------------------------------------------------- /src/lpr_recognizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/src/lpr_recognizer.cpp -------------------------------------------------------------------------------- /src/plate_petector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiangweizeng/mobile-lpr/HEAD/src/plate_petector.cpp --------------------------------------------------------------------------------