HoughLinesPAsync function
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
Future<Mat> HoughLinesPAsync(
InputArray image,
double rho,
double theta,
int threshold, {
double minLineLength = 0,
double maxLineGap = 0,
}) async =>
cvRunAsync(
(callback) => cimgproc.HoughLinesPWithParams_Async(
image.ref,
rho,
theta,
threshold,
minLineLength,
maxLineGap,
callback,
),
matCompleter,
);