├── .gitignore ├── CMakeLists.txt ├── README.md ├── inference.cpp ├── inference.h ├── main.cpp └── source ├── classes └── classes.txt ├── data ├── bus.jpg └── zidane.jpg └── models ├── customExport_v5.sh ├── customExport_v8.sh ├── yolov5s.onnx └── yolov8s.onnx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustasBart/yolov8_CPP_Inference_OpenCV_ONNX/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustasBart/yolov8_CPP_Inference_OpenCV_ONNX/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustasBart/yolov8_CPP_Inference_OpenCV_ONNX/HEAD/README.md -------------------------------------------------------------------------------- /inference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustasBart/yolov8_CPP_Inference_OpenCV_ONNX/HEAD/inference.cpp -------------------------------------------------------------------------------- /inference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustasBart/yolov8_CPP_Inference_OpenCV_ONNX/HEAD/inference.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustasBart/yolov8_CPP_Inference_OpenCV_ONNX/HEAD/main.cpp -------------------------------------------------------------------------------- /source/classes/classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustasBart/yolov8_CPP_Inference_OpenCV_ONNX/HEAD/source/classes/classes.txt -------------------------------------------------------------------------------- /source/data/bus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustasBart/yolov8_CPP_Inference_OpenCV_ONNX/HEAD/source/data/bus.jpg -------------------------------------------------------------------------------- /source/data/zidane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustasBart/yolov8_CPP_Inference_OpenCV_ONNX/HEAD/source/data/zidane.jpg -------------------------------------------------------------------------------- /source/models/customExport_v5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustasBart/yolov8_CPP_Inference_OpenCV_ONNX/HEAD/source/models/customExport_v5.sh -------------------------------------------------------------------------------- /source/models/customExport_v8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustasBart/yolov8_CPP_Inference_OpenCV_ONNX/HEAD/source/models/customExport_v8.sh -------------------------------------------------------------------------------- /source/models/yolov5s.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustasBart/yolov8_CPP_Inference_OpenCV_ONNX/HEAD/source/models/yolov5s.onnx -------------------------------------------------------------------------------- /source/models/yolov8s.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustasBart/yolov8_CPP_Inference_OpenCV_ONNX/HEAD/source/models/yolov8s.onnx --------------------------------------------------------------------------------