Correct point coordinates for fisheye lens distortion
returns point coordinates corrected for fisheye lens distortion.undistortedPoints
= undistortFisheyePoints(points
,intrinsics
)
returns corrected point coordinates using the undistortedPoints
= undistortFisheyePoints(___,scaleFactor
)scaleFactor
and
the previous inputs.
[___,
also returns a camIntrinsics
] = undistortFisheyePoints(___)cameraIntrinsics
object, which
corresponds to a virtual perspective camera that produces undistorted points.
[___,
also returns reprojectionErrors
] = undistortFisheyePoints(___)reprojectionErrors
used to evaluate the accuracy
of undistorted points. The function computes the reprojection errors by applying
distortion to the points, and taking the distances between the result and the
corresponding input points.