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
- Host: GitHub
- URL: https://github.com/alyssaq/hough_transform
- Owner: alyssaq
- Created: 2014-12-11T12:27:39.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2022-07-11T09:44:56.000Z (almost 4 years ago)
- Last Synced: 2024-12-10T07:12:38.254Z (over 1 year ago)
- Topics: python
- Language: Python
- Homepage:
- Size: 532 KB
- Stars: 130
- Watchers: 6
- Forks: 52
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hough Transform - Line Detection
[](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

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