├── .gitignore ├── 48_ncnn.png ├── CMakeLists.txt ├── Makefile ├── README.md ├── _clang-format ├── cmake ├── DevkitArm3DS.cmake ├── FindCTRULIB.cmake └── Tools3DS.cmake ├── romfs ├── config │ ├── fastestdet.json │ └── nanodet-plus-m_416_int8.json └── models │ ├── FastestDet.bin │ ├── FastestDet.param │ ├── nanodet-plus-m_416_int8.bin │ └── nanodet-plus-m_416_int8.param └── src ├── detector.cpp ├── detector.h ├── fastestdet.cpp ├── fastestdet.h ├── main.cpp ├── nanodet.cpp ├── nanodet.h ├── vision.cpp └── vision.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/.gitignore -------------------------------------------------------------------------------- /48_ncnn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/48_ncnn.png -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/README.md -------------------------------------------------------------------------------- /_clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/_clang-format -------------------------------------------------------------------------------- /cmake/DevkitArm3DS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/cmake/DevkitArm3DS.cmake -------------------------------------------------------------------------------- /cmake/FindCTRULIB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/cmake/FindCTRULIB.cmake -------------------------------------------------------------------------------- /cmake/Tools3DS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/cmake/Tools3DS.cmake -------------------------------------------------------------------------------- /romfs/config/fastestdet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/romfs/config/fastestdet.json -------------------------------------------------------------------------------- /romfs/config/nanodet-plus-m_416_int8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/romfs/config/nanodet-plus-m_416_int8.json -------------------------------------------------------------------------------- /romfs/models/FastestDet.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/romfs/models/FastestDet.bin -------------------------------------------------------------------------------- /romfs/models/FastestDet.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/romfs/models/FastestDet.param -------------------------------------------------------------------------------- /romfs/models/nanodet-plus-m_416_int8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/romfs/models/nanodet-plus-m_416_int8.bin -------------------------------------------------------------------------------- /romfs/models/nanodet-plus-m_416_int8.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/romfs/models/nanodet-plus-m_416_int8.param -------------------------------------------------------------------------------- /src/detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/src/detector.cpp -------------------------------------------------------------------------------- /src/detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/src/detector.h -------------------------------------------------------------------------------- /src/fastestdet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/src/fastestdet.cpp -------------------------------------------------------------------------------- /src/fastestdet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/src/fastestdet.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/nanodet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/src/nanodet.cpp -------------------------------------------------------------------------------- /src/nanodet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/src/nanodet.h -------------------------------------------------------------------------------- /src/vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/src/vision.cpp -------------------------------------------------------------------------------- /src/vision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deepdive543443/Detkit-NCNN-3ds/HEAD/src/vision.h --------------------------------------------------------------------------------