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

https://github.com/thohemp/cube_detector

Cube Detection using YOLOv5 with Oriented Bounding Boxes (OBB)
https://github.com/thohemp/cube_detector

computer-vision object-detection oriented-bounding-box rotation yolo yolov5

Last synced: 5 months ago
JSON representation

Cube Detection using YOLOv5 with Oriented Bounding Boxes (OBB)

Awesome Lists containing this project

README

        

# Cube Detection with Oriented Bounding Boxes
![Screenshot](example_video.gif)

# Run inference
```sh
python detect.py --source 0 --weights m640rot.pt --imgsz 640 --conf-thres 0.75
```

# Run as ROS node

```sh
rosrun cube_detector ros_detect.py
```

# Training

```sh
python3 train.py --img 640 --batch 3 --epochs 3 --data aug_cube.yaml
```

# Test

```sh
python3 detect.py --source 0 --weights m640rot.pt --img 640
```