borderInterpolateAsync function
BorderInterpolate computes the source location of an extrapolated pixel.
For further details, please see: https://docs.opencv.org/master/d2/de8/group__core__array.html#ga247f571aa6244827d3d798f13892da58
Implementation
Future<int> borderInterpolateAsync(int p, int len, int borderType) async => cvRunAsync(
(callback) => ccore.core_BorderInterpolate_Async(p, len, borderType, callback),
intCompleter,
);