edgeOrgAsync method
Returns the edge origin.
https://docs.opencv.org/4.x/df/dbf/classcv_1_1Subdiv2D.html#a5563e3cae0a9b95df63e72f0c12f9389
Implementation
Future<(int rval, Point2f orgpt)> edgeOrgAsync(int edge) async =>
cvRunAsync2((callback) => cffi.Subdiv2D_EdgeOrg_Async(ref, edge, callback), (completer, p, p1) {
final rval = p.cast<ffi.Int>().value;
calloc.free(p);
completer.complete((rval, Point2f.fromPointer(p1.cast<cvg.Point2f>())));
});