HoughLinesAsync function
HoughLines implements the standard or standard multi-scale 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#ga46b4e588934f6c8dfd509cc6e0e4545a
Implementation
Future<Mat> HoughLinesAsync(
InputArray image,
double rho,
double theta,
int threshold, {
double srn = 0,
double stn = 0,
double min_theta = 0,
double max_theta = CV_PI,
}) async =>
cvRunAsync(
(callback) => cimgproc.HoughLines_Async(
image.ref, rho, theta, threshold, srn, stn, min_theta, max_theta, callback),
matCompleter,
);