https://github.com/adilius/hough-transform-simple
Simple implementation of Hough transform
https://github.com/adilius/hough-transform-simple
hough-transform python
Last synced: 2 months ago
JSON representation
Simple implementation of Hough transform
- Host: GitHub
- URL: https://github.com/adilius/hough-transform-simple
- Owner: Adilius
- Created: 2021-12-05T16:27:27.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-12-05T22:31:00.000Z (over 3 years ago)
- Last Synced: 2025-01-11T06:45:23.444Z (4 months ago)
- Topics: hough-transform, python
- Language: Python
- Homepage:
- Size: 69.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# Simple Hough transform
Simple implementation of [Hough transform](https://en.wikipedia.org/wiki/Hough_transform) in Python 3.10 using Numpy## Quick start
1. Clone repository:
```bash
git clone https://github.com/Adilius/hough-transform-simple.git
```2. Change directory to repository:
```bash
cd .\hough-transform-simple\
```3. Install required packages:
```bash
pip3 install -r .\requirements.txt
```4. Run script!
```bash
python .\hough_transform.py
```## Output
With input_text.txt set to these coordinates
```
2,2
3,1.5
6,0
```
With input_text.txt set to these coordinates
```
2,2
5,3
6,0
```
