|
|
@ -2086,12 +2086,12 @@ The function finds lines in a set of points using a modification of the Hough tr |
|
|
|
@param point Input vector of points. Each vector must be encoded as a Point vector \f$(x,y)\f$. Type must be CV_32FC2 or CV_32SC2. |
|
|
|
@param point Input vector of points. Each vector must be encoded as a Point vector \f$(x,y)\f$. Type must be CV_32FC2 or CV_32SC2. |
|
|
|
@param lines Output vector of found lines. Each vector is encoded as a vector<Vec3d> \f$(votes, rho, theta)\f$. |
|
|
|
@param lines Output vector of found lines. Each vector is encoded as a vector<Vec3d> \f$(votes, rho, theta)\f$. |
|
|
|
The larger the value of 'votes', the higher the reliability of the Hough line. |
|
|
|
The larger the value of 'votes', the higher the reliability of the Hough line. |
|
|
|
@param lines_max Max count of hough lines. |
|
|
|
@param lines_max Max count of Hough lines. |
|
|
|
@param threshold Accumulator threshold parameter. Only those lines are returned that get enough |
|
|
|
@param threshold Accumulator threshold parameter. Only those lines are returned that get enough |
|
|
|
votes ( \f$>\texttt{threshold}\f$ ) |
|
|
|
votes ( \f$>\texttt{threshold}\f$ ). |
|
|
|
@param min_rho Minimum Distance value of the accumulator in pixels. |
|
|
|
@param min_rho Minimum value for \f$\rho\f$ for the accumulator (Note: \f$\rho\f$ can be negative. The absolute value \f$|\rho|\f$ is the distance of a line to the origin.). |
|
|
|
@param max_rho Maximum Distance value of the accumulator in pixels. |
|
|
|
@param max_rho Maximum value for \f$\rho\f$ for the accumulator. |
|
|
|
@param rho_step Distance resolution of the accumulator in pixels. |
|
|
|
@param rho_step Distance resolution of the accumulator. |
|
|
|
@param min_theta Minimum angle value of the accumulator in radians. |
|
|
|
@param min_theta Minimum angle value of the accumulator in radians. |
|
|
|
@param max_theta Maximum angle value of the accumulator in radians. |
|
|
|
@param max_theta Maximum angle value of the accumulator in radians. |
|
|
|
@param theta_step Angle resolution of the accumulator in radians. |
|
|
|
@param theta_step Angle resolution of the accumulator in radians. |
|
|
|