Method HoughLinesPointSet
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
HoughLinesPointSet(InputArray, OutputArray, int, int, double, double, double, double, double, double)
Finds lines in a set of points using the standard Hough transform. The function finds lines in a set of points using a modification of the Hough transform.
public static void HoughLinesPointSet(InputArray point, OutputArray lines, int linesMax, int threshold, double minRho, double maxRho, double rhoStep, double minTheta, double maxTheta, double thetaStep)
Parameters
pointInputArrayInput vector of points. Each vector must be encoded as a Point vector \f$(x,y)\f$. Type must be CV_32FC2 or CV_32SC2.
linesOutputArrayOutput vector of found lines. Each vector is encoded as a vector<Vec3d>
linesMaxintMax count of hough lines.
thresholdintAccumulator threshold parameter. Only those lines are returned that get enough votes
minRhodoubleMinimum Distance value of the accumulator in pixels.
maxRhodoubleMaximum Distance value of the accumulator in pixels.
rhoStepdoubleDistance resolution of the accumulator in pixels.
minThetadoubleMinimum angle value of the accumulator in radians.
maxThetadoubleMaximum angle value of the accumulator in radians.
thetaStepdoubleAngle resolution of the accumulator in radians.