├── .gitignore ├── Detection_app.py ├── README.md ├── UI_webcam_4.py ├── config.py ├── icon ├── pause.png └── play.png ├── inference └── pexels-thirdman-8482541.jpg ├── models ├── __init__.py ├── api.py ├── common.py ├── cudart_api.py ├── engine.py ├── pycuda_api.py ├── torch_utils.py └── utils.py ├── tensorrt_infer_det.py ├── tensorrt_infer_det_without_torch.py └── yolov8_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyuanfan/YOLOv8-TensorRT-MaskDetection/HEAD/.gitignore -------------------------------------------------------------------------------- /Detection_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyuanfan/YOLOv8-TensorRT-MaskDetection/HEAD/Detection_app.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyuanfan/YOLOv8-TensorRT-MaskDetection/HEAD/README.md -------------------------------------------------------------------------------- /UI_webcam_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyuanfan/YOLOv8-TensorRT-MaskDetection/HEAD/UI_webcam_4.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyuanfan/YOLOv8-TensorRT-MaskDetection/HEAD/config.py -------------------------------------------------------------------------------- /icon/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyuanfan/YOLOv8-TensorRT-MaskDetection/HEAD/icon/pause.png -------------------------------------------------------------------------------- /icon/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyuanfan/YOLOv8-TensorRT-MaskDetection/HEAD/icon/play.png -------------------------------------------------------------------------------- /inference/pexels-thirdman-8482541.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyuanfan/YOLOv8-TensorRT-MaskDetection/HEAD/inference/pexels-thirdman-8482541.jpg -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyuanfan/YOLOv8-TensorRT-MaskDetection/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyuanfan/YOLOv8-TensorRT-MaskDetection/HEAD/models/api.py -------------------------------------------------------------------------------- /models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyuanfan/YOLOv8-TensorRT-MaskDetection/HEAD/models/common.py -------------------------------------------------------------------------------- /models/cudart_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyuanfan/YOLOv8-TensorRT-MaskDetection/HEAD/models/cudart_api.py -------------------------------------------------------------------------------- /models/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyuanfan/YOLOv8-TensorRT-MaskDetection/HEAD/models/engine.py -------------------------------------------------------------------------------- /models/pycuda_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyuanfan/YOLOv8-TensorRT-MaskDetection/HEAD/models/pycuda_api.py -------------------------------------------------------------------------------- /models/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyuanfan/YOLOv8-TensorRT-MaskDetection/HEAD/models/torch_utils.py -------------------------------------------------------------------------------- /models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyuanfan/YOLOv8-TensorRT-MaskDetection/HEAD/models/utils.py -------------------------------------------------------------------------------- /tensorrt_infer_det.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyuanfan/YOLOv8-TensorRT-MaskDetection/HEAD/tensorrt_infer_det.py -------------------------------------------------------------------------------- /tensorrt_infer_det_without_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyuanfan/YOLOv8-TensorRT-MaskDetection/HEAD/tensorrt_infer_det_without_torch.py -------------------------------------------------------------------------------- /yolov8_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyuanfan/YOLOv8-TensorRT-MaskDetection/HEAD/yolov8_test.py --------------------------------------------------------------------------------