HoughLinesPointSetAsync function
HoughLinesPointSet implements the Hough transform algorithm for line detection on a set of points. For a good explanation of Hough transform, see: http:///homepages.inf.ed.ac.uk/rbf/HIPR2/hough.htm
For further details, please see: https:///docs.opencv.org/master/dd/d1a/group__imgproc__feature.html#ga2858ef61b4e47d1919facac2152a160e
Implementation
Future<Mat> HoughLinesPointSetAsync(
InputArray point,
int lines_max,
int threshold,
double min_rho,
double max_rho,
double rho_step,
double min_theta,
double max_theta,
double theta_step,
) async =>
cvRunAsync(
(callback) => cimgproc.HoughLinesPointSet_Async(
point.ref,
lines_max,
threshold,
min_rho,
max_rho,
rho_step,
min_theta,
max_theta,
theta_step,
callback,
),
matCompleter,
);