Fix typo in hough_lines tutorial

Argument `minLinLength` -> `minLineLength`
This commit is contained in:
Justin Chu 2020-12-30 16:20:27 -05:00 committed by GitHub
parent 6e1da2ef91
commit 8f66dad65b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -217,7 +217,7 @@ First you apply the transform:
- *theta*: The resolution of the parameter \f$\theta\f$ in radians. We use **1 degree**
(CV_PI/180)
- *threshold*: The minimum number of intersections to "*detect*" a line
- *minLinLength*: The minimum number of points that can form a line. Lines with less than
- *minLineLength*: The minimum number of points that can form a line. Lines with less than
this number of points are disregarded.
- *maxLineGap*: The maximum gap between two points to be considered in the same line.