edgeDstAsync method
Returns the edge destination.
https://docs.opencv.org/4.x/df/dbf/classcv_1_1Subdiv2D.html#aee192f95bf19c74619641496c457586d
Implementation
Future<(int rval, Point2f dstpt)> edgeDstAsync(int edge) async =>
cvRunAsync2((callback) => cimgproc.Subdiv2D_EdgeDst_Async(ref, edge, callback), (completer, p, p1) {
final rval = p.cast<ffi.Int>().value;
calloc.free(p);
completer.complete((rval, Point2f.fromPointer(p1.cast<cimgproc.Point2f>())));
});