Uses of Class
com.irurueta.geometry.estimators.Point2DRobustEstimator
Packages that use Point2DRobustEstimator
Package
Description
This package contains classes to estimate basic geometric structures
-
Uses of Point2DRobustEstimator in com.irurueta.geometry.estimators
Subclasses of Point2DRobustEstimator in com.irurueta.geometry.estimatorsModifier and TypeClassDescriptionclassFinds the best 2D point for provided collection of 2D lines using RANSAC algorithm.classFinds the best 2D point for provided collection of 2D lines using MSAC algorithm.classFinds the best 2D point for provided collection of 2D lines using PROMedS algorithm.classFinds the best 2D point for provided collection of 2D lines using PROSAC algorithm.classFinds the best 2D point for provided collection of 2D lines using RANSAC algorithm.Methods in com.irurueta.geometry.estimators that return Point2DRobustEstimatorModifier and TypeMethodDescriptionstatic Point2DRobustEstimatorPoint2DRobustEstimator.create()Creates a 2D point robust estimator based on 2D line samples and using default robust estimator method.static Point2DRobustEstimatorPoint2DRobustEstimator.create(double[] qualityScores) Creates a 2D point robust estimator based on 2D line samples and using default robust estimator method.static Point2DRobustEstimatorPoint2DRobustEstimator.create(double[] qualityScores, com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a 2D point robust estimator based on 2D line samples and using provided robust estimator method.static Point2DRobustEstimatorPoint2DRobustEstimator.create(Point2DRobustEstimatorListener listener) Creates a 2D point robust estimator based on 2D line samples and using provided listener and default robust estimator method.static Point2DRobustEstimatorPoint2DRobustEstimator.create(Point2DRobustEstimatorListener listener, double[] qualityScores) Creates a 2D point robust estimator based on 2D line samples and using provided listener and default estimator method.static Point2DRobustEstimatorPoint2DRobustEstimator.create(Point2DRobustEstimatorListener listener, double[] qualityScores, com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a 2D point robust estimator based on 2D line samples and using provided listener.static Point2DRobustEstimatorPoint2DRobustEstimator.create(Point2DRobustEstimatorListener listener, com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a 2D point robust estimator based on 2D line samples and using provided listener.static Point2DRobustEstimatorPoint2DRobustEstimator.create(Point2DRobustEstimatorListener listener, List<Line2D> lines) Creates a 2D point robust estimator based on 2D line samples and using provided listener and lines and default robust estimator method.static Point2DRobustEstimatorPoint2DRobustEstimator.create(Point2DRobustEstimatorListener listener, List<Line2D> lines, double[] qualityScores) Creates a 2D point robust estimator based on 2D line samples and using provided listener and lines and default estimator method.static Point2DRobustEstimatorPoint2DRobustEstimator.create(Point2DRobustEstimatorListener listener, List<Line2D> lines, double[] qualityScores, com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a 2D point robust estimator based on 2D line samples and using provided listener and lines.static Point2DRobustEstimatorPoint2DRobustEstimator.create(Point2DRobustEstimatorListener listener, List<Line2D> lines, com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a 2D point robust estimator based on 2D line samples and using provided listener and lines.static Point2DRobustEstimatorPoint2DRobustEstimator.create(com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a 2D point robust estimator based on 2D line samples and using provided robust estimator method.static Point2DRobustEstimatorCreates a 2D point robust estimator based on 2D line samples and using provided lines and default robust estimator method.static Point2DRobustEstimatorCreates a 2D point robust estimator based on 2D line samples and using provided lines and default estimator method.static Point2DRobustEstimatorPoint2DRobustEstimator.create(List<Line2D> lines, double[] qualityScores, com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a 2D point robust estimator based on 2D line samples and using provided lines and robust estimator method.static Point2DRobustEstimatorPoint2DRobustEstimator.create(List<Line2D> lines, com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a 2D point robust estimator based on 2D line samples and using provided lines and robust estimator method.Methods in com.irurueta.geometry.estimators with parameters of type Point2DRobustEstimatorModifier and TypeMethodDescriptionvoidPoint2DRobustEstimatorListener.onEstimateEnd(Point2DRobustEstimator estimator) Called when estimation ends.voidPoint2DRobustEstimatorListener.onEstimateNextIteration(Point2DRobustEstimator estimator, int iteration) Called when estimator iterates to refine a possible solution.voidPoint2DRobustEstimatorListener.onEstimateProgressChange(Point2DRobustEstimator estimator, float progress) Called when estimation progress changes significantly.voidPoint2DRobustEstimatorListener.onEstimateStart(Point2DRobustEstimator estimator) Called when estimation starts.