undistortPoints function

VARP undistortPoints(
  1. VARP src,
  2. VARP cameraMatrix,
  3. VARP distCoeffs
)

Implementation

VARP undistortPoints(VARP src, VARP cameraMatrix, VARP distCoeffs) {
  final pOut = c.mnn_cv_undistortPoints(src.ptr, cameraMatrix.ptr, distCoeffs.ptr);
  final rval = VARP.fromPointer(pOut);
  return rval;
}