You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
3
+
4
+
## Setup Instructions
5
+
### Install python3
6
+
sudo apt-get install python3
7
+
### Install pip (package installer for python)
8
+
sudo apt-get install python3-pip
9
+
### Install Numpy library with pip
10
+
pip3 install numpy
11
+
### Install OpenCV library with pip
12
+
pip3 install opencv-python
13
+
### Install tkinter library
14
+
sudo apt-get install python3-tk
15
+
16
+
## Details/Output
17
+
A dialog box appears with two transform options, hough transform and probabilistic hough transform.
18
+
Selecting any one option prompts user to select an image and detects lines in it using the selected transform.
19
+
The output image is written/stored in the current folder.
0 commit comments