seamlessCloneAsync function
Future<Mat>
seamlessCloneAsync(
- InputArray src,
- InputArray dst,
- InputArray mask,
- Point p,
- int flags,
Implementation
Future<Mat> seamlessCloneAsync(InputArray src, InputArray dst, InputArray mask, Point p, int flags) async {
final blend = Mat.empty();
return cvRunAsync0(
(callback) => cphoto.cv_seamlessClone(src.ref, dst.ref, mask.ref, p.ref, blend.ref, flags, callback),
(c) {
return c.complete(blend);
},
);
}