├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── assets ├── bus.jpg ├── result_bus.png ├── result_zidane.png ├── traffic.gif └── zidane.jpg ├── notebooks └── YOLOv10_exporter.ipynb └── src ├── CMakeLists.txt ├── inference.cc ├── inference.h ├── main_camera.cc ├── main_detect.cc ├── main_video.cc ├── utils.cc └── utils.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlggyp/YOLOv10-OpenVINO-CPP-Inference/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlggyp/YOLOv10-OpenVINO-CPP-Inference/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlggyp/YOLOv10-OpenVINO-CPP-Inference/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlggyp/YOLOv10-OpenVINO-CPP-Inference/HEAD/README.md -------------------------------------------------------------------------------- /assets/bus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlggyp/YOLOv10-OpenVINO-CPP-Inference/HEAD/assets/bus.jpg -------------------------------------------------------------------------------- /assets/result_bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlggyp/YOLOv10-OpenVINO-CPP-Inference/HEAD/assets/result_bus.png -------------------------------------------------------------------------------- /assets/result_zidane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlggyp/YOLOv10-OpenVINO-CPP-Inference/HEAD/assets/result_zidane.png -------------------------------------------------------------------------------- /assets/traffic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlggyp/YOLOv10-OpenVINO-CPP-Inference/HEAD/assets/traffic.gif -------------------------------------------------------------------------------- /assets/zidane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlggyp/YOLOv10-OpenVINO-CPP-Inference/HEAD/assets/zidane.jpg -------------------------------------------------------------------------------- /notebooks/YOLOv10_exporter.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlggyp/YOLOv10-OpenVINO-CPP-Inference/HEAD/notebooks/YOLOv10_exporter.ipynb -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlggyp/YOLOv10-OpenVINO-CPP-Inference/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/inference.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlggyp/YOLOv10-OpenVINO-CPP-Inference/HEAD/src/inference.cc -------------------------------------------------------------------------------- /src/inference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlggyp/YOLOv10-OpenVINO-CPP-Inference/HEAD/src/inference.h -------------------------------------------------------------------------------- /src/main_camera.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlggyp/YOLOv10-OpenVINO-CPP-Inference/HEAD/src/main_camera.cc -------------------------------------------------------------------------------- /src/main_detect.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlggyp/YOLOv10-OpenVINO-CPP-Inference/HEAD/src/main_detect.cc -------------------------------------------------------------------------------- /src/main_video.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlggyp/YOLOv10-OpenVINO-CPP-Inference/HEAD/src/main_video.cc -------------------------------------------------------------------------------- /src/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlggyp/YOLOv10-OpenVINO-CPP-Inference/HEAD/src/utils.cc -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlggyp/YOLOv10-OpenVINO-CPP-Inference/HEAD/src/utils.h --------------------------------------------------------------------------------