├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── custom_export_onnx.py ├── include └── yolov5face_onnx.h ├── lib └── .gitkeep ├── model └── .gitkeep ├── scripts ├── convert_onnx.sh └── pull_onnx_lib.sh ├── selfie.jpg └── src └── yolov5face_onnx.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/yolov5-face-landmarks-onnx-c-plus/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/yolov5-face-landmarks-onnx-c-plus/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/yolov5-face-landmarks-onnx-c-plus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/yolov5-face-landmarks-onnx-c-plus/HEAD/README.md -------------------------------------------------------------------------------- /custom_export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/yolov5-face-landmarks-onnx-c-plus/HEAD/custom_export_onnx.py -------------------------------------------------------------------------------- /include/yolov5face_onnx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/yolov5-face-landmarks-onnx-c-plus/HEAD/include/yolov5face_onnx.h -------------------------------------------------------------------------------- /lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/convert_onnx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/yolov5-face-landmarks-onnx-c-plus/HEAD/scripts/convert_onnx.sh -------------------------------------------------------------------------------- /scripts/pull_onnx_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/yolov5-face-landmarks-onnx-c-plus/HEAD/scripts/pull_onnx_lib.sh -------------------------------------------------------------------------------- /selfie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/yolov5-face-landmarks-onnx-c-plus/HEAD/selfie.jpg -------------------------------------------------------------------------------- /src/yolov5face_onnx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorRient/yolov5-face-landmarks-onnx-c-plus/HEAD/src/yolov5face_onnx.cpp --------------------------------------------------------------------------------