Uses of Class
com.irurueta.ar.epipolar.estimators.FundamentalMatrixRobustEstimator
Packages that use FundamentalMatrixRobustEstimator
Package
Description
This package contains classes to estimate fundamental matrices
-
Uses of FundamentalMatrixRobustEstimator in com.irurueta.ar.epipolar.estimators
Subclasses of FundamentalMatrixRobustEstimator in com.irurueta.ar.epipolar.estimatorsModifier and TypeClassDescriptionclassFinds the best fundamental matrix for provided collections of matched 2D points using LMedS algorithm.classFinds the best fundamental matrix for provided collections of matched 2D points using RANSAC algorithm.classFinds the best fundamental matrix for provided collections of matched 2D points using PROMedS algorithm.classFinds the best fundamental matrix for provided collections of matched 2D points using PROSAC algorithm.classFinds the best fundamental matrix for provided collections of matched 2D points using RANSAC algorithm.Methods in com.irurueta.ar.epipolar.estimators that return FundamentalMatrixRobustEstimatorModifier and TypeMethodDescriptionFundamentalMatrixRobustEstimator.create()Creates a fundamental matrix robust estimator using default method.FundamentalMatrixRobustEstimator.create(com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a fundamental matrix robust estimator using provided method.FundamentalMatrixRobustEstimator.create(List<com.irurueta.geometry.Point2D> leftPoints, List<com.irurueta.geometry.Point2D> rightPoints) Creates a fundamental matrix robust estimator using provided lists of matched points and default method.FundamentalMatrixRobustEstimator.create(List<com.irurueta.geometry.Point2D> leftPoints, List<com.irurueta.geometry.Point2D> rightPoints, double[] qualityScores) Creates a fundamental matrix robust estimator using provided lists of matched points and default method.FundamentalMatrixRobustEstimator.create(List<com.irurueta.geometry.Point2D> leftPoints, List<com.irurueta.geometry.Point2D> rightPoints, double[] qualityScores, com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a fundamental matrix robust estimator using provided lists of matched points and provided method.FundamentalMatrixRobustEstimator.create(List<com.irurueta.geometry.Point2D> leftPoints, List<com.irurueta.geometry.Point2D> rightPoints, com.irurueta.numerical.robust.RobustEstimatorMethod method) Creates a fundamental matrix robust estimator using provided lists of matched points and provided method.Methods in com.irurueta.ar.epipolar.estimators with parameters of type FundamentalMatrixRobustEstimatorModifier and TypeMethodDescriptionvoidFundamentalMatrixRobustEstimatorListener.onEstimateEnd(FundamentalMatrixRobustEstimator estimator) Called when estimation ends.voidFundamentalMatrixRobustEstimatorListener.onEstimateNextIteration(FundamentalMatrixRobustEstimator estimator, int iteration) Called when estimator iterates to refine a possible solution.voidFundamentalMatrixRobustEstimatorListener.onEstimateProgressChange(FundamentalMatrixRobustEstimator estimator, float progress) Called when estimation progress changes significantly.voidFundamentalMatrixRobustEstimatorListener.onEstimateStart(FundamentalMatrixRobustEstimator estimator) Called when estimation starts.