Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lstuma/YOLO_utils
A few utilities for the YOLO project implemented in C for extra speed
https://github.com/lstuma/YOLO_utils
Last synced: 3 months ago
JSON representation
A few utilities for the YOLO project implemented in C for extra speed
- Host: GitHub
- URL: https://github.com/lstuma/YOLO_utils
- Owner: lstuma
- License: mit
- Created: 2023-02-16T20:34:28.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-10T18:09:03.000Z (almost 2 years ago)
- Last Synced: 2024-08-03T01:23:32.268Z (7 months ago)
- Language: C
- Size: 10.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-yolo-object-detection - lstuma/YOLO_utils
README
# YOLO_utils
A few utilities for the YOLO project implemented in C for extra speed## How to use
```python
# Import Module
import yolo_utils# Declare boxes for IoU Calculation
box1 = [2, 2, 3, 4]
box2 = [2, 3, 3, 4]# Calculate Intersection over Union
intersec = iou(box1, box2)
```