undistortPoints function
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;
}
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;
}