Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/xiaohaoo/yolo_tensorrt

Deploy the YOLOv8 model for inference using OpenCV and TensorRT in C/C++.
https://github.com/xiaohaoo/yolo_tensorrt

c cuda opencv tensorrt yolov8

Last synced: about 2 months ago
JSON representation

Deploy the YOLOv8 model for inference using OpenCV and TensorRT in C/C++.

Awesome Lists containing this project

README

        

# Yolov8 TensorRT

Deploy the [YOLOV8](https://github.com/ultralytics/ultralytics) model for object detection using OpenCV and [TensorRT](https://github.com/NVIDIA/TensorRT).

## Overview

img_1_detected
img_3_detected

## Dependencies

- CMAKE
- Microsoft Visual Studio
- CUDA: Only [download](https://github.com/xiaohaoo/Yolo_TensorRT/releases/download/v1.0.0/lib.zip) the required runtime library.
- OpenCV: Only [download](https://github.com/xiaohaoo/Yolo_TensorRT/releases/download/v1.0.0/lib.zip) the required runtime library.

## Installation

```bash
git clone [email protected]:xiaohaoo/Yolo_TensorRT.git

cd Yolo_TensorRT
cmake -DCMAKE_BUILD_TYPE:STRING=Release -B build -G "Visual Studio 16 2019" -A x64
cmake --build build --config Release --target install -j 22

# run app
cd build\output
.\yolo.exe
```