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

https://github.com/alyssaq/hough_transform

Hough Transform implementation in Python
https://github.com/alyssaq/hough_transform

python

Last synced: 11 months ago
JSON representation

Hough Transform implementation in Python

Awesome Lists containing this project

README

          

# Hough Transform - Line Detection
[![Build Status](https://travis-ci.org/alyssaq/hough_transform.svg?branch=master)](https://travis-ci.org/alyssaq/hough_transform)

Python implementation of hough transform for detecting lines in images.
Explanation of how the hough transform works in my blog post: [Understanding Hough Transform](https://alyssaq.github.io/2014/understanding-hough-transform)

## Requirements
* Tested on Python 2.7 and Python 3.6
* `pip install -r requirements.txt`

## Usage
```py
python hough_transform.py
```
## Sample
![hough transform image](imgs/output.png)

## Tests
```py
python hough_transform_test.py
```

## Resources
* OpenCV's hough transform documentation:

* EGGN 512 hough transform lecture in 3 parts:

## License
[MIT](https://alyssaq.github.io/mit-license)