Uses of Class
com.irurueta.ar.calibration.estimators.RadialDistortionRobustEstimator
Packages that use RadialDistortionRobustEstimator
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 RadialDistortionRobustEstimator in com.irurueta.ar.calibration
Fields in com.irurueta.ar.calibration declared as RadialDistortionRobustEstimatorModifier and TypeFieldDescriptionprivate RadialDistortionRobustEstimator
AlternatingCameraCalibrator.distortionEstimator
Robust estimator of radial distortion.private RadialDistortionRobustEstimator
ErrorOptimizationCameraCalibrator.distortionEstimator
Robust estimator of radial distortion.Methods in com.irurueta.ar.calibration that return RadialDistortionRobustEstimatorModifier and TypeMethodDescriptionAlternatingCameraCalibrator.getDistortionEstimator()
Returns radial distortion estimator, which can be retrieved in case that some additional parameter needed to be adjusted.ErrorOptimizationCameraCalibrator.getDistortionEstimator()
Returns radial distortion estimator, which can be retrieved in case that some additional parameter needed to be adjusted. -
Uses of RadialDistortionRobustEstimator in com.irurueta.ar.calibration.estimators
Subclasses of RadialDistortionRobustEstimator in com.irurueta.ar.calibration.estimatorsModifier and TypeClassDescriptionclass
Finds the best radial distortion for provided collection of 2D points using LMedS algorithmclass
Finds the best radial distortion for provided collections of 2D points using MSAC algorithm.class
Finds the best radial distortion for provided collections of 2D points using PROMedS algorithm.class
Finds the best radial distortion for provided collections of 2D points using PROSAC algorithm.class
Finds the best radial distortion for provided collections of 2D points using RANSAC algorithmMethods in com.irurueta.ar.calibration.estimators that return RadialDistortionRobustEstimatorModifier and TypeMethodDescriptionRadialDistortionRobustEstimator.create()
Creates a radial distortion robust estimator using default robust method.RadialDistortionRobustEstimator.create
(com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a radial distortion robust estimator using provided robust method.RadialDistortionRobustEstimator.create
(List<com.irurueta.geometry.Point2D> distortedPoints, List<com.irurueta.geometry.Point2D> undistortedPoints) Creates a radial distortion robust estimator using provided distorted and undistorted points assuming that distortion center is at origin of coordinates and using default robust estimation method.RadialDistortionRobustEstimator.create
(List<com.irurueta.geometry.Point2D> distortedPoints, List<com.irurueta.geometry.Point2D> undistortedPoints, double[] qualityScores) Creates a radial distortion robust estimator using provided distorted and undistorted points assuming that distortion center is at origin of coordinates and using default robust estimation method.RadialDistortionRobustEstimator.create
(List<com.irurueta.geometry.Point2D> distortedPoints, List<com.irurueta.geometry.Point2D> undistortedPoints, double[] qualityScores, com.irurueta.geometry.Point2D distortionCenter) Creates a radial distortion robust estimator using provided distorted and undistorted points, as well as the distortion center using the default robust estimation method.RadialDistortionRobustEstimator.create
(List<com.irurueta.geometry.Point2D> distortedPoints, List<com.irurueta.geometry.Point2D> undistortedPoints, double[] qualityScores, com.irurueta.geometry.Point2D distortionCenter, com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a radial distortion robust estimator using provided distorted and undistorted points, as well as the distortion center.RadialDistortionRobustEstimator.create
(List<com.irurueta.geometry.Point2D> distortedPoints, List<com.irurueta.geometry.Point2D> undistortedPoints, double[] qualityScores, com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a radial distortion robust estimator using provided distorted and undistorted points and assuming that distortion center is at origin of coordinates.RadialDistortionRobustEstimator.create
(List<com.irurueta.geometry.Point2D> distortedPoints, List<com.irurueta.geometry.Point2D> undistortedPoints, com.irurueta.geometry.Point2D distortionCenter) Creates a radial distortion robust estimator using provided distorted and undistorted points, as well as the distortion center using the default robust estimation method.RadialDistortionRobustEstimator.create
(List<com.irurueta.geometry.Point2D> distortedPoints, List<com.irurueta.geometry.Point2D> undistortedPoints, com.irurueta.geometry.Point2D distortionCenter, com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a radial distortion robust estimator using provided distorted and undistorted points, as well as the distortion center.RadialDistortionRobustEstimator.create
(List<com.irurueta.geometry.Point2D> distortedPoints, List<com.irurueta.geometry.Point2D> undistortedPoints, com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a radial distortion robust estimator using provided distorted and undistorted points and assuming that distortion center is at origin of coordinates.Methods in com.irurueta.ar.calibration.estimators with parameters of type RadialDistortionRobustEstimatorModifier and TypeMethodDescriptionvoid
RadialDistortionRobustEstimatorListener.onEstimateEnd
(RadialDistortionRobustEstimator estimator) Called when estimation ends.void
RadialDistortionRobustEstimatorListener.onEstimateNextIteration
(RadialDistortionRobustEstimator estimator, int iteration) Called when estimator iterates to refine a possible solution.void
RadialDistortionRobustEstimatorListener.onEstimateProgressChange
(RadialDistortionRobustEstimator estimator, float progress) Called when estimation progress changes significantly.void
RadialDistortionRobustEstimatorListener.onEstimateStart
(RadialDistortionRobustEstimator estimator) Called when estimation starts.