abidrahmank / OpenCV2-Python-Tutorials

This repo contains tutorials on OpenCV-Python library using new cv2 interface
1.25k stars 887 forks source link

Include parameter names in cv2.HoughLinesP() #307

Open khtee opened 3 years ago

khtee commented 3 years ago

There is a parameter called lines in between threshold and minLineLength. Without specifying the parameter name will cause cv2.HoughLinesP() to take the wrong positional parameter.

Docstring: HoughLinesP(image, rho, theta, threshold[, lines[, minLineLength[, maxLineGap]]])