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
/** @brief Creates implementation for cuda::HoughSegmentDetector .
@@ -434,8 +437,10 @@ class CV_EXPORTS_W HoughSegmentDetector : public Algorithm
434
437
@param minLineLength Minimum line length. Line segments shorter than that are rejected.
435
438
@param maxLineGap Maximum allowed gap between points on the same line to link them.
436
439
@param maxLines Maximum number of output lines.
440
+
@param threshold %Accumulator threshold parameter. Only those lines are returned that get enough
441
+
votes ( \f$>\texttt{threshold}\f$ ).
437
442
*/
438
-
CV_EXPORTS_W Ptr<HoughSegmentDetector> createHoughSegmentDetector(float rho, float theta, int minLineLength, int maxLineGap, int maxLines = 4096);
443
+
CV_EXPORTS_W Ptr<HoughSegmentDetector> createHoughSegmentDetector(float rho, float theta, int minLineLength, int maxLineGap, int maxLines = 4096, int threshold = -1);
0 commit comments