├── .github └── FUNDING.yml ├── LICENSE.md ├── Makefile ├── README.md ├── config_infer_primary_yoloV5_face.txt ├── config_infer_primary_yoloV7_face.txt ├── config_infer_primary_yoloV8_face.txt ├── deepstream.c ├── deepstream.h ├── deepstream.py ├── docs ├── YOLOv5_Face.md ├── YOLOv7_Face.md └── YOLOv8_Face.md ├── labels.txt ├── modules ├── interrupt.c ├── interrupt.h ├── perf.c └── perf.h ├── nvdsinfer_custom_impl_Yolo_face ├── Makefile └── nvdsparseface_Yolo.cpp └── utils ├── export_yoloV5_face.py ├── export_yoloV7_face.py └── export_yoloV8_face.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoslucianops/DeepStream-Yolo-Face/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoslucianops/DeepStream-Yolo-Face/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoslucianops/DeepStream-Yolo-Face/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoslucianops/DeepStream-Yolo-Face/HEAD/README.md -------------------------------------------------------------------------------- /config_infer_primary_yoloV5_face.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoslucianops/DeepStream-Yolo-Face/HEAD/config_infer_primary_yoloV5_face.txt -------------------------------------------------------------------------------- /config_infer_primary_yoloV7_face.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoslucianops/DeepStream-Yolo-Face/HEAD/config_infer_primary_yoloV7_face.txt -------------------------------------------------------------------------------- /config_infer_primary_yoloV8_face.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoslucianops/DeepStream-Yolo-Face/HEAD/config_infer_primary_yoloV8_face.txt -------------------------------------------------------------------------------- /deepstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoslucianops/DeepStream-Yolo-Face/HEAD/deepstream.c -------------------------------------------------------------------------------- /deepstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoslucianops/DeepStream-Yolo-Face/HEAD/deepstream.h -------------------------------------------------------------------------------- /deepstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoslucianops/DeepStream-Yolo-Face/HEAD/deepstream.py -------------------------------------------------------------------------------- /docs/YOLOv5_Face.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoslucianops/DeepStream-Yolo-Face/HEAD/docs/YOLOv5_Face.md -------------------------------------------------------------------------------- /docs/YOLOv7_Face.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoslucianops/DeepStream-Yolo-Face/HEAD/docs/YOLOv7_Face.md -------------------------------------------------------------------------------- /docs/YOLOv8_Face.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoslucianops/DeepStream-Yolo-Face/HEAD/docs/YOLOv8_Face.md -------------------------------------------------------------------------------- /labels.txt: -------------------------------------------------------------------------------- 1 | face 2 | -------------------------------------------------------------------------------- /modules/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoslucianops/DeepStream-Yolo-Face/HEAD/modules/interrupt.c -------------------------------------------------------------------------------- /modules/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoslucianops/DeepStream-Yolo-Face/HEAD/modules/interrupt.h -------------------------------------------------------------------------------- /modules/perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoslucianops/DeepStream-Yolo-Face/HEAD/modules/perf.c -------------------------------------------------------------------------------- /modules/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoslucianops/DeepStream-Yolo-Face/HEAD/modules/perf.h -------------------------------------------------------------------------------- /nvdsinfer_custom_impl_Yolo_face/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoslucianops/DeepStream-Yolo-Face/HEAD/nvdsinfer_custom_impl_Yolo_face/Makefile -------------------------------------------------------------------------------- /nvdsinfer_custom_impl_Yolo_face/nvdsparseface_Yolo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoslucianops/DeepStream-Yolo-Face/HEAD/nvdsinfer_custom_impl_Yolo_face/nvdsparseface_Yolo.cpp -------------------------------------------------------------------------------- /utils/export_yoloV5_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoslucianops/DeepStream-Yolo-Face/HEAD/utils/export_yoloV5_face.py -------------------------------------------------------------------------------- /utils/export_yoloV7_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoslucianops/DeepStream-Yolo-Face/HEAD/utils/export_yoloV7_face.py -------------------------------------------------------------------------------- /utils/export_yoloV8_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcoslucianops/DeepStream-Yolo-Face/HEAD/utils/export_yoloV8_face.py --------------------------------------------------------------------------------