estimateAffinePartial2DAsync function

Future<(Mat, Mat)> estimateAffinePartial2DAsync(
  1. VecPoint2f from,
  2. VecPoint2f to, {
  3. int method = RANSAC,
  4. double ransacReprojThreshold = 3,
  5. int maxIters = 2000,
  6. double confidence = 0.99,
  7. int refineIters = 10,
})

Implementation

Future<(Mat, Mat inliers)> estimateAffinePartial2DAsync(
  VecPoint2f from,
  VecPoint2f to, {
  int method = RANSAC,
  double ransacReprojThreshold = 3,
  int maxIters = 2000,
  double confidence = 0.99,
  int refineIters = 10,
}) async =>
    cvRunAsync2(
      (callback) => ccalib3d.estimateAffinePartial2DWithParams_Async(
        from.ref,
        to.ref,
        method,
        ransacReprojThreshold,
        maxIters,
        confidence,
        refineIters,
        callback,
      ),
      matCompleter2,
    );