undistortPointsAsync static method
Future<Mat>
undistortPointsAsync(
- InputArray distorted,
- InputArray K,
- InputArray D, {
- InputArray? R,
- InputArray? P,
async version of undistortPoints
Implementation
static Future<Mat> undistortPointsAsync(
InputArray distorted,
InputArray K,
InputArray D, {
InputArray? R,
InputArray? P,
}) async =>
cvRunAsync(
(callback) => cffi.fisheye_undistortPoints_Async(
distorted.ref,
K.ref,
D.ref,
R?.ref ?? Mat.empty().ref,
P?.ref ?? Mat.empty().ref,
callback,
),
matCompleter,
);