lstuma / YOLO_utils

A few utilities for the YOLO project implemented in C for extra speed

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

YOLO_utils

A few utilities for the YOLO project implemented in C for extra speed

How to use

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

About

A few utilities for the YOLO project implemented in C for extra speed

License:MIT License


Languages

Language:C 57.7%Language:Python 42.3%