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

https://github.com/raphael-denni/yolo-simple-object-detection

This is a simple test usage of the YOLO toolset. Records a live video through your camera and displays detected elements with colored boxes.
https://github.com/raphael-denni/yolo-simple-object-detection

ai opencv python yolo

Last synced: about 2 months ago
JSON representation

This is a simple test usage of the YOLO toolset. Records a live video through your camera and displays detected elements with colored boxes.

Awesome Lists containing this project

README

          

# yolo-simple-object-detection

This is a simple test usage of the YOLO toolset. Records a live video through your camera and displays detected elements with colored boxes.

## Installation

It is recommended to use UV package manager to run this project. You can install it by following the instructions [here](https://docs.astral.sh/uv/getting-started/installation/).
After installing UV, you can go to the [Usage](#usage) section of this README to run the project.

Or you can install the required packages manually by using pyenv and pip:
```
pyenv install 3.12
pyenv local 3.12
pip install -r requirements.txt
```

## Usage

```
uv run main.py
```

Or with Python 3:
```
python3 main.py
```