Fisheye class

Constructors

Fisheye()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

estimateNewCameraMatrixForUndistortRectify(InputArray K, InputArray D, (int, int) imageSize, InputArray R, {OutputArray? P, double balance = 0.0, (int, int) newSize = (0, 0), double fovScale = 1.0}) Mat
EstimateNewCameraMatrixForUndistortRectify estimates new camera matrix for undistortion or rectification.
estimateNewCameraMatrixForUndistortRectifyAsync(InputArray K, InputArray D, (int, int) imageSize, InputArray R, {double balance = 0.0, (int, int) newSize = (0, 0), double fovScale = 1.0}) Future<Mat>
async version of estimateNewCameraMatrixForUndistortRectify
undistortImage(InputArray distorted, InputArray K, InputArray D, {OutputArray? undistorted, InputArray? knew, (int, int) newSize = (0, 0)}) Mat
FisheyeUndistortImage transforms an image to compensate for fisheye lens distortion https://docs.opencv.org/3.4/db/d58/group__calib3d__fisheye.html#ga167df4b00a6fd55287ba829fbf9913b9
undistortImageAsync(InputArray distorted, InputArray K, InputArray D, {InputArray? knew, (int, int) newSize = (0, 0)}) Future<Mat>
async version of undistortImage
undistortPoints(InputArray distorted, InputArray K, InputArray D, {OutputArray? undistorted, InputArray? R, InputArray? P}) Mat
FisheyeUndistortPoints transforms points to compensate for fisheye lens distortion
undistortPointsAsync(InputArray distorted, InputArray K, InputArray D, {InputArray? R, InputArray? P}) Future<Mat>
async version of undistortPoints