├── LICENSE ├── README.md ├── boundingbox.py ├── client_image.py ├── client_video.py ├── labels.py ├── processing.py └── render.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulyLi2019/tensorrt-yolov5/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # tensorrt-yolov5 2 | 包含目标检测前处理与后处理 3 | -------------------------------------------------------------------------------- /boundingbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulyLi2019/tensorrt-yolov5/HEAD/boundingbox.py -------------------------------------------------------------------------------- /client_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulyLi2019/tensorrt-yolov5/HEAD/client_image.py -------------------------------------------------------------------------------- /client_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulyLi2019/tensorrt-yolov5/HEAD/client_video.py -------------------------------------------------------------------------------- /labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulyLi2019/tensorrt-yolov5/HEAD/labels.py -------------------------------------------------------------------------------- /processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulyLi2019/tensorrt-yolov5/HEAD/processing.py -------------------------------------------------------------------------------- /render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JulyLi2019/tensorrt-yolov5/HEAD/render.py --------------------------------------------------------------------------------