├── CMakeLists.txt ├── README.md ├── doc └── pfld.png ├── include ├── gpu_support.h └── ncnn_config.h.in ├── model ├── pfld-sim.bin └── pfld-sim.param └── src └── detect.cpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilseuropa/pfld_ncnn/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilseuropa/pfld_ncnn/HEAD/README.md -------------------------------------------------------------------------------- /doc/pfld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilseuropa/pfld_ncnn/HEAD/doc/pfld.png -------------------------------------------------------------------------------- /include/gpu_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilseuropa/pfld_ncnn/HEAD/include/gpu_support.h -------------------------------------------------------------------------------- /include/ncnn_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilseuropa/pfld_ncnn/HEAD/include/ncnn_config.h.in -------------------------------------------------------------------------------- /model/pfld-sim.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilseuropa/pfld_ncnn/HEAD/model/pfld-sim.bin -------------------------------------------------------------------------------- /model/pfld-sim.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilseuropa/pfld_ncnn/HEAD/model/pfld-sim.param -------------------------------------------------------------------------------- /src/detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nilseuropa/pfld_ncnn/HEAD/src/detect.cpp --------------------------------------------------------------------------------