Skip to content

Commit 899c2ba

Browse files
authored
Update README.md
1 parent 3cf9fe8 commit 899c2ba

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Hough_Transform/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
Hough Transform
1+
# **Hough Transform**
22

3-
=>The Hough transform is an incredible tool that lets you identify lines. Not just lines, but other shapes as well.it is a popular feature extraction technique that converts an image from Cartesian to polar coordinates.
3+
## - The Hough transform is an incredible tool that lets you identify lines. Not just lines, but other shapes as well.it is a popular feature extraction technique that converts an image from Cartesian to polar coordinates.
44

5-
=>It somehow manage to detect the shape even if it is broken or distorted a little bit. We will see how it works for a line.
5+
## - It somehow manage to detect the shape even if it is broken or distorted a little bit. We will see how it works for a line.
66

7-
The function used for detecting edge is cv2.Canny() edge detector.
7+
### The function used for detecting edge is cv2.Canny() edge detector.
88

9-
Now apply the hough transform using cv2.HoughLinesP() function:
9+
- Now apply the hough transform using cv2.HoughLinesP() function:
1010

11-
HoughLinesP(dst, lines, 1, CV_PI/180, 50, 50, 10 );
11+
## HoughLinesP(dst, lines, 1, CV_PI/180, 50, 50, 10 );
1212

13-
Parameters:
13+
## Parameters Explained:
1414

1515

1616
dst: Output of the edge detector. It should be a grayscale image (although in fact it is a binary one)
@@ -23,7 +23,7 @@ Parameters:
2323

2424

2525

26-
For detail understanding watch the following videos:
26+
## For detail understanding watch the following videos:
2727

2828
https://youtu.be/4zHbI-fFIlI
2929

0 commit comments

Comments
 (0)