Uses of Class
com.irurueta.ar.calibration.RadialDistortionException
Packages that use RadialDistortionException
Package
Description
This package contains classes used for camera calibration on 3D
reconstruction
This package contains classes needed to estimate structures needed for camera
calibration
-
Uses of RadialDistortionException in com.irurueta.ar.calibration
Methods in com.irurueta.ar.calibration that throw RadialDistortionExceptionModifier and TypeMethodDescriptionfinal voidRadialDistortion.setFromPointsAndCenter(com.irurueta.geometry.Point2D distortedPoint1, com.irurueta.geometry.Point2D distortedPoint2, com.irurueta.geometry.Point2D undistortedPoint1, com.irurueta.geometry.Point2D undistortedPoint2, com.irurueta.geometry.Point2D distortionCenter) Estimates this radial distortion from points and distortion center.voidRadialDistortion.setHorizontalFocalLength(double horizontalFocalLength) Sets horizontal focal length expressed in pixels.voidRadialDistortion.setIntrinsic(com.irurueta.geometry.PinholeCameraIntrinsicParameters intrinsic) Sets intrinsic parameters from pinhole camera.final voidRadialDistortion.setIntrinsic(com.irurueta.geometry.Point2D center, double horizontalFocalLength, double verticalFocalLength, double skew) Sets intrinsic parameters.voidRadialDistortion.setVerticalFocalLength(double verticalFocalLength) Sets vertical focal length expressed in pixels.Constructors in com.irurueta.ar.calibration that throw RadialDistortionExceptionModifierConstructorDescriptionRadialDistortion(double[] kParams, com.irurueta.geometry.Point2D center, double horizontalFocalLength, double verticalFocalLength, double skew) Constructor with radial distortion parameters, center and other camera intrinsic parameters.RadialDistortion(double k1, double k2, com.irurueta.geometry.Point2D center, double horizontalFocalLength, double verticalFocalLength, double skew) Constructor with radial distortion parameters, center and other camera intrinsic parameters.RadialDistortion(com.irurueta.geometry.Point2D distortedPoint1, com.irurueta.geometry.Point2D distortedPoint2, com.irurueta.geometry.Point2D undistortedPoint1, com.irurueta.geometry.Point2D undistortedPoint2, com.irurueta.geometry.Point2D distortionCenter) Constructor with points and distortion center. -
Uses of RadialDistortionException in com.irurueta.ar.calibration.estimators
Methods in com.irurueta.ar.calibration.estimators that throw RadialDistortionExceptionModifier and TypeMethodDescriptionvoidRadialDistortionEstimator.setHorizontalFocalLength(double horizontalFocalLength) Sets horizontal focal length expressed in pixels.private voidRadialDistortionEstimator.setInternalIntrinsic(com.irurueta.geometry.Point2D distortionCenter, double horizontalFocalLength, double verticalFocalLength, double skew) Internally sets intrinsic parameters.voidRadialDistortionEstimator.setIntrinsic(com.irurueta.geometry.PinholeCameraIntrinsicParameters intrinsic) Sets intrinsic parameters for this estimator from pinhole camera intrinsic parameters.final voidRadialDistortionEstimator.setIntrinsic(com.irurueta.geometry.Point2D distortionCenter, double horizontalFocalLength, double verticalFocalLength, double skew) Sets intrinsic parameters.voidRadialDistortionEstimator.setVerticalFocalLength(double verticalFocalLength) Sets vertical focal length expressed in pixels.