Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

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)
```