HoughLinesP function
Mat
HoughLinesP(
- InputArray image,
- double rho,
- double theta,
- int threshold, {
- OutputArray? lines,
- double minLineLength = 0,
- double maxLineGap = 0,
HoughLinesP implements the probabilistic Hough transform algorithm for line detection. For a good explanation of Hough transform, see: http:///homepages.inf.ed.ac.uk/rbf/HIPR2/hough.htm
For further details, please see: http:///docs.opencv.org/master/dd/d1a/group__imgproc__feature.html#ga8618180a5948286384e3b7ca02f6feeb
Implementation
Mat HoughLinesP(
InputArray image,
double rho,
double theta,
int threshold, {
OutputArray? lines,
double minLineLength = 0,
double maxLineGap = 0,
}) {
lines ??= Mat.empty();
cvRun(
() => cimgproc.HoughLinesPWithParams(
image.ref,
lines!.ref,
rho,
theta,
threshold,
minLineLength,
maxLineGap,
),
);
return lines;
}