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

https://github.com/coreyjs/yolo-books

Implementation of YOLO Algorithm
https://github.com/coreyjs/yolo-books

computer-vision machine-learning yolov3

Last synced: about 1 year ago
JSON representation

Implementation of YOLO Algorithm

Awesome Lists containing this project

README

          

# YOLO

This is an implemenation of the YOLOv3 image detection algorithm. We are specificially using `YOLOv3-320` from [Darknet](https://pjreddie.com/darknet/yolo/)

---

### Configuration
Filename: `yolov3-320.cfg`

Download: [Here](https://github.com/pjreddie/darknet/blob/master/cfg/yolov3.cfg)

### Weights
Filename: `yolov3.weights`

Download: [Here](https://pjreddie.com/media/files/yolov3.weights)

---

### Run

To run, download the above configuration and weights to the project directory. This env was built using Anaconda.

```bash
python main.py
```

## Example output
![Screenshot 2022-03-12 104524](https://user-images.githubusercontent.com/1228838/158025179-93666116-76ac-415c-97d2-98462fa45e8a.png)

Why is it called yolo-books? Well the goal is to expand upon this for doing a bunch of cool stuff around book detection, integrated title searching, view ratings, etc.