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 TypeClassDescriptionclass
Finds the best fundamental matrix for provided collections of matched 2D points using LMedS algorithm.class
Finds the best fundamental matrix for provided collections of matched 2D points using RANSAC algorithm.class
Finds the best fundamental matrix for provided collections of matched 2D points using PROMedS algorithm.class
Finds the best fundamental matrix for provided collections of matched 2D points using PROSAC algorithm.class
Finds 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 TypeMethodDescriptionvoid
FundamentalMatrixRobustEstimatorListener.onEstimateEnd
(FundamentalMatrixRobustEstimator estimator) Called when estimation ends.void
FundamentalMatrixRobustEstimatorListener.onEstimateNextIteration
(FundamentalMatrixRobustEstimator estimator, int iteration) Called when estimator iterates to refine a possible solution.void
FundamentalMatrixRobustEstimatorListener.onEstimateProgressChange
(FundamentalMatrixRobustEstimator estimator, float progress) Called when estimation progress changes significantly.void
FundamentalMatrixRobustEstimatorListener.onEstimateStart
(FundamentalMatrixRobustEstimator estimator) Called when estimation starts.