:param image:8-bit, single-channel binary source image. The image may be modified by the function.
@ -378,6 +378,10 @@ Finds lines in a binary image using the standard Hough transform.
:param stn:For the multi-scale Hough transform, it is a divisor for the distance resolution ``theta``.
:param min_theta:For standard and multi-scale Hough transform, minimum angle to check for lines. Must fall between 0 and max_theta.
:param max_theta:For standard and multi-scale Hough transform, maximum angle to check for lines. Must fall between min_theta and CV_PI.
:param method:One of the following Hough transform variants:
* **CV_HOUGH_STANDARD** classical or standard Hough transform. Every line is represented by two floating-point numbers :math:`(\rho, \theta)` , where :math:`\rho` is a distance between (0,0) point and the line, and :math:`\theta` is the angle between x-axis and the normal to the line. Thus, the matrix must be (the created sequence will be) of ``CV_32FC2`` type