matchShapesAsync function
Compares two shapes. method: ShapeMatchModes For further details, please see: https:///docs.opencv.org/4.x/d3/dc0/group__imgproc__shape.html#gaadc90cb16e2362c9bd6e7363e6e4c317
Implementation
Future<double> matchShapesAsync(VecPoint contour1, VecPoint contour2, int method, double parameter) async =>
cvRunAsync(
(callback) => cimgproc.MatchShapes_Async(contour1.ref, contour2.ref, method, parameter, callback),
doubleCompleter,
);