├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── coco.names ├── include └── .gitkeep ├── lib └── .gitkeep ├── src └── YOLOv5LibTorch.cpp └── yolov5s.torchscript.pt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebula4869/YOLOv5-LibTorch/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebula4869/YOLOv5-LibTorch/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebula4869/YOLOv5-LibTorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebula4869/YOLOv5-LibTorch/HEAD/README.md -------------------------------------------------------------------------------- /coco.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebula4869/YOLOv5-LibTorch/HEAD/coco.names -------------------------------------------------------------------------------- /include/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/YOLOv5LibTorch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebula4869/YOLOv5-LibTorch/HEAD/src/YOLOv5LibTorch.cpp -------------------------------------------------------------------------------- /yolov5s.torchscript.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebula4869/YOLOv5-LibTorch/HEAD/yolov5s.torchscript.pt --------------------------------------------------------------------------------