initDelaunayAsync method

Future<void> initDelaunayAsync(
  1. Rect rect
)

Implementation

Future<void> initDelaunayAsync(Rect rect) async {
  return cvRunAsync0(
    (callback) => cimgproc.cv_Subdiv2D_initDelaunay(ref, rect.ref, callback),
    (c) {
      c.complete();
    },
  );
}