Skip to content

Files

Latest commit

 

History

History
 
 

Line_Detection_HoughLine

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Line detection

This python script will allow us to identify lines in an image depending on the user's choice to select one of the two options: HoughTransform and Probabilistic HoughTransform

Setup Instructions

Install python3

sudo apt-get install python3

Install pip (package installer for python)

sudo apt-get install python3-pip

Install Numpy library with pip

pip3 install numpy

Install OpenCV library with pip

pip3 install opencv-python

Install tkinter library

sudo apt-get install python3-tk

Details/Output

A dialog box appears with two transform options, hough transform and probabilistic hough transform. Selecting any one option prompts user to select an image and detects lines in it using the selected transform.
The output image is written/stored in the current folder.

Author

Github: invigorzz313