Skip to content

Commit 2f7dd5e

Browse files
authored
Update README.md
1 parent f2f76ec commit 2f7dd5e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Hough_Transform/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
## Parameters Explained:
1414

1515

16-
dst: Output of the edge detector. It should be a grayscale image (although in fact it is a binary one)
17-
lines: A vector that will store the parameters (x_{start}, y_{start}, x_{end}, y_{end}) of the detected lines
18-
rho : The resolution of the parameter r in pixels. We use 1 pixel.
19-
theta: The resolution of the parameter \theta in radians. We use 1 degree (CV_PI/180)
20-
threshold: The minimum number of intersections to “detect” a line
21-
minLinLength: The minimum number of points that can form a line. Lines with less than this number of points are disregarded.
22-
maxLineGap: The maximum gap between two points to be considered in the same line.
16+
## dst :## Output of the edge detector. It should be a grayscale image (although in fact it is a binary one)
17+
## lines: ## A vector that will store the parameters (x_{start}, y_{start}, x_{end}, y_{end}) of the detected lines
18+
## rho :## The resolution of the parameter r in pixels. We use 1 pixel.
19+
## theta:## The resolution of the parameter \theta in radians. We use 1 degree (CV_PI/180)
20+
## threshold:## The minimum number of intersections to “detect” a line
21+
## minLinLength:## The minimum number of points that can form a line. Lines with less than this number of points are disregarded.
22+
## maxLineGap:## The maximum gap between two points to be considered in the same line.
2323

2424

2525

0 commit comments

Comments
 (0)