├── CMakeLists.txt ├── LICENSE ├── MNN └── include │ ├── AutoTime.hpp │ ├── ErrorCode.hpp │ ├── HalideRuntime.h │ ├── ImageProcess.hpp │ ├── Interpreter.hpp │ ├── MNNDefine.h │ ├── MNNForwardType.h │ ├── MNNSharedContext.h │ ├── Matrix.h │ ├── Rect.h │ └── Tensor.hpp ├── README.md ├── data ├── demo.jpg ├── demo_res.jpg ├── selfie.jpg ├── selfie_res.jpg ├── test_5.jpg └── test_5_res.jpg ├── models ├── symbol_10_320_20L_5scales_v2_deploy.mnn └── symbol_10_560_25L_8scales_v1_deploy.mnn └── src ├── MNN_LFFD.cpp ├── MNN_LFFD.h └── test.cpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/LICENSE -------------------------------------------------------------------------------- /MNN/include/AutoTime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/MNN/include/AutoTime.hpp -------------------------------------------------------------------------------- /MNN/include/ErrorCode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/MNN/include/ErrorCode.hpp -------------------------------------------------------------------------------- /MNN/include/HalideRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/MNN/include/HalideRuntime.h -------------------------------------------------------------------------------- /MNN/include/ImageProcess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/MNN/include/ImageProcess.hpp -------------------------------------------------------------------------------- /MNN/include/Interpreter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/MNN/include/Interpreter.hpp -------------------------------------------------------------------------------- /MNN/include/MNNDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/MNN/include/MNNDefine.h -------------------------------------------------------------------------------- /MNN/include/MNNForwardType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/MNN/include/MNNForwardType.h -------------------------------------------------------------------------------- /MNN/include/MNNSharedContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/MNN/include/MNNSharedContext.h -------------------------------------------------------------------------------- /MNN/include/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/MNN/include/Matrix.h -------------------------------------------------------------------------------- /MNN/include/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/MNN/include/Rect.h -------------------------------------------------------------------------------- /MNN/include/Tensor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/MNN/include/Tensor.hpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/README.md -------------------------------------------------------------------------------- /data/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/data/demo.jpg -------------------------------------------------------------------------------- /data/demo_res.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/data/demo_res.jpg -------------------------------------------------------------------------------- /data/selfie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/data/selfie.jpg -------------------------------------------------------------------------------- /data/selfie_res.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/data/selfie_res.jpg -------------------------------------------------------------------------------- /data/test_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/data/test_5.jpg -------------------------------------------------------------------------------- /data/test_5_res.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/data/test_5_res.jpg -------------------------------------------------------------------------------- /models/symbol_10_320_20L_5scales_v2_deploy.mnn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/models/symbol_10_320_20L_5scales_v2_deploy.mnn -------------------------------------------------------------------------------- /models/symbol_10_560_25L_8scales_v1_deploy.mnn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/models/symbol_10_560_25L_8scales_v1_deploy.mnn -------------------------------------------------------------------------------- /src/MNN_LFFD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/src/MNN_LFFD.cpp -------------------------------------------------------------------------------- /src/MNN_LFFD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/src/MNN_LFFD.h -------------------------------------------------------------------------------- /src/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyGoing/LFFD-MNN/HEAD/src/test.cpp --------------------------------------------------------------------------------