├── .gitignore ├── Images ├── cat.jpg ├── cat_detection.jpg ├── cat_detection_modified_16bits.jpg ├── cat_detection_modified_32bits.jpg ├── true_detection.jpg ├── zeros_detection.jpg └── zeros_detection_modified_16bits.jpg ├── Makefile ├── README.md ├── YOLODetector.cpp ├── YOLODraw.cpp ├── YOLODraw.h ├── yolo_small_deploy.prototxt └── yolo_small_modified.prototxt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLESORT/YOLO-TensorRT-GIE-/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLESORT/YOLO-TensorRT-GIE-/HEAD/Images/cat.jpg -------------------------------------------------------------------------------- /Images/cat_detection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLESORT/YOLO-TensorRT-GIE-/HEAD/Images/cat_detection.jpg -------------------------------------------------------------------------------- /Images/cat_detection_modified_16bits.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLESORT/YOLO-TensorRT-GIE-/HEAD/Images/cat_detection_modified_16bits.jpg -------------------------------------------------------------------------------- /Images/cat_detection_modified_32bits.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLESORT/YOLO-TensorRT-GIE-/HEAD/Images/cat_detection_modified_32bits.jpg -------------------------------------------------------------------------------- /Images/true_detection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLESORT/YOLO-TensorRT-GIE-/HEAD/Images/true_detection.jpg -------------------------------------------------------------------------------- /Images/zeros_detection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLESORT/YOLO-TensorRT-GIE-/HEAD/Images/zeros_detection.jpg -------------------------------------------------------------------------------- /Images/zeros_detection_modified_16bits.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLESORT/YOLO-TensorRT-GIE-/HEAD/Images/zeros_detection_modified_16bits.jpg -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLESORT/YOLO-TensorRT-GIE-/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLESORT/YOLO-TensorRT-GIE-/HEAD/README.md -------------------------------------------------------------------------------- /YOLODetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLESORT/YOLO-TensorRT-GIE-/HEAD/YOLODetector.cpp -------------------------------------------------------------------------------- /YOLODraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLESORT/YOLO-TensorRT-GIE-/HEAD/YOLODraw.cpp -------------------------------------------------------------------------------- /YOLODraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLESORT/YOLO-TensorRT-GIE-/HEAD/YOLODraw.h -------------------------------------------------------------------------------- /yolo_small_deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLESORT/YOLO-TensorRT-GIE-/HEAD/yolo_small_deploy.prototxt -------------------------------------------------------------------------------- /yolo_small_modified.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TLESORT/YOLO-TensorRT-GIE-/HEAD/yolo_small_modified.prototxt --------------------------------------------------------------------------------