Uses of Class
com.irurueta.geometry.estimators.SphereRobustEstimator
Packages that use SphereRobustEstimator
Package
Description
This package contains classes to estimate basic geometric structures
-
Uses of SphereRobustEstimator in com.irurueta.geometry.estimators
Subclasses of SphereRobustEstimator in com.irurueta.geometry.estimatorsModifier and TypeClassDescriptionclassFinds the best sphere for provided collection of 3D points using LMedS algorithm.classFinds the best sphere for provided collection of 3D points using MSAC algorithm.classFinds the best sphere for provided collection of 3D points using PROMedS algorithm.classFinds the best sphere for provided collection of 3D points using PROSAC algorithm.classFinds the best sphere for provided collection of 3D points using RANSAC algorithm.Methods in com.irurueta.geometry.estimators that return SphereRobustEstimatorModifier and TypeMethodDescriptionstatic SphereRobustEstimatorSphereRobustEstimator.create()Creates a sphere robust estimator based on 3D point samples and using default robust estimator method.static SphereRobustEstimatorSphereRobustEstimator.create(double[] qualityScores) Creates a sphere robust estimator based on 3D point samples and using default robust estimator method.static SphereRobustEstimatorSphereRobustEstimator.create(double[] qualityScores, com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a sphere robust estimator based on 3D point samples and using provided robust estimator method.static SphereRobustEstimatorSphereRobustEstimator.create(SphereRobustEstimatorListener listener) Creates a sphere robust estimator based on 3D point samples and using provided listener and default robust estimator method.static SphereRobustEstimatorSphereRobustEstimator.create(SphereRobustEstimatorListener listener, double[] qualityScores) Creates a sphere robust estimator based on 3D point samples and using provided listener and default estimator method.static SphereRobustEstimatorSphereRobustEstimator.create(SphereRobustEstimatorListener listener, double[] qualityScores, com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a sphere robust estimator based on 3D point samples and using provided listener.static SphereRobustEstimatorSphereRobustEstimator.create(SphereRobustEstimatorListener listener, com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a sphere robust estimator based on 3D point samples and using provided listener.static SphereRobustEstimatorSphereRobustEstimator.create(SphereRobustEstimatorListener listener, List<Point3D> points) Creates a sphere robust estimator based on 3D point samples and using provided listener and points and default robust estimator method.static SphereRobustEstimatorSphereRobustEstimator.create(SphereRobustEstimatorListener listener, List<Point3D> points, double[] qualityScores) Creates a sphere robust estimator based on 3D point samples and using provided listener and points and default estimator method.static SphereRobustEstimatorSphereRobustEstimator.create(SphereRobustEstimatorListener listener, List<Point3D> points, double[] qualityScores, com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a sphere robust estimator based on 3D point samples and using provided listener and points.static SphereRobustEstimatorSphereRobustEstimator.create(SphereRobustEstimatorListener listener, List<Point3D> points, com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a sphere robust estimator based on 3D point samples and using provided listener and points.static SphereRobustEstimatorSphereRobustEstimator.create(com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a sphere robust estimator based on 3D point samples and using provided robust estimator method.static SphereRobustEstimatorCreates a sphere robust estimator based on 3D point samples and using provided points and default robust estimator method.static SphereRobustEstimatorCreates a sphere robust estimator based on 3D point samples and using provided points and default estimator method.static SphereRobustEstimatorSphereRobustEstimator.create(List<Point3D> points, double[] qualityScores, com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a sphere robust estimator based on 3D point samples and using provided points and robust estimator method.static SphereRobustEstimatorSphereRobustEstimator.create(List<Point3D> points, com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a sphere robust estimator based on 3D point samples and using provided points and robust estimator method.Methods in com.irurueta.geometry.estimators with parameters of type SphereRobustEstimatorModifier and TypeMethodDescriptionvoidSphereRobustEstimatorListener.onEstimateEnd(SphereRobustEstimator estimator) Called when estimation ends.voidSphereRobustEstimatorListener.onEstimateNextIteration(SphereRobustEstimator estimator, int iteration) Called when estimator iterates to refine a possible solution.voidSphereRobustEstimatorListener.onEstimateProgressChange(SphereRobustEstimator estimator, float progress) Called when estimation progress changes significantly.voidSphereRobustEstimatorListener.onEstimateStart(SphereRobustEstimator estimator) Called when estimation starts.