createAsync static method
Implementation
static Future<Stitcher> createAsync({
StitcherMode mode = StitcherMode.PANORAMA,
}) async =>
cvRunAsync(
(callback) => cffi.Stitcher_Create_Async(mode.index, callback),
(c, p) => c.complete(Stitcher.fromPointer(p.cast<cvg.Stitcher>())),
);