From 8f66dad65b8ffef1e6aea59159f38258da480318 Mon Sep 17 00:00:00 2001 From: Justin Chu Date: Wed, 30 Dec 2020 16:20:27 -0500 Subject: [PATCH] Fix typo in hough_lines tutorial Argument `minLinLength` -> `minLineLength` --- doc/tutorials/imgproc/imgtrans/hough_lines/hough_lines.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorials/imgproc/imgtrans/hough_lines/hough_lines.markdown b/doc/tutorials/imgproc/imgtrans/hough_lines/hough_lines.markdown index d9687e2..9a08d0c 100644 --- a/doc/tutorials/imgproc/imgtrans/hough_lines/hough_lines.markdown +++ b/doc/tutorials/imgproc/imgtrans/hough_lines/hough_lines.markdown @@ -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. -- 2.7.4