Uses of Class
com.irurueta.ar.epipolar.SingleCorrector
Packages that use SingleCorrector
Package
Description
This package contains classes related to epipolar geometry, such as
Fundamental or Essential matrices and matched points correctors.
-
Uses of SingleCorrector in com.irurueta.ar.epipolar
Subclasses of SingleCorrector in com.irurueta.ar.epipolarModifier and TypeClassDescriptionclass
Fixes a single matched pair of points so that they perfectly follow a given epipolar geometry using the Gold Standard method, which is capable to completely remove errors assuming their gaussianity.class
Fixes a single matched pair of points so that they perfectly follow a given epipolar geometry using the Sampson approximation.Methods in com.irurueta.ar.epipolar that return SingleCorrectorModifier and TypeMethodDescriptionstatic SingleCorrector
SingleCorrector.create()
Creates an instance of a single corrector using default type.static SingleCorrector
SingleCorrector.create
(CorrectorType type) Creates an instance of a single corrector using provided type.static SingleCorrector
SingleCorrector.create
(FundamentalMatrix fundamentalMatrix) Creates an instance of a single corrector using provided fundamental matrix and default type.static SingleCorrector
SingleCorrector.create
(FundamentalMatrix fundamentalMatrix, CorrectorType type) Creates an instance of a single corrector using provided fundamental matrix and provided type.static SingleCorrector
SingleCorrector.create
(com.irurueta.geometry.Point2D leftPoint, com.irurueta.geometry.Point2D rightPoint) Creates an instance of a single corrector using provided left and right points to be corrected.static SingleCorrector
SingleCorrector.create
(com.irurueta.geometry.Point2D leftPoint, com.irurueta.geometry.Point2D rightPoint, CorrectorType type) Creates an instance of a single corrector using provided left and right points to be corrected, and provided type.static SingleCorrector
SingleCorrector.create
(com.irurueta.geometry.Point2D leftPoint, com.irurueta.geometry.Point2D rightPoint, FundamentalMatrix fundamentalMatrix) Creates an instance of a single corrector using provided left and right points to be corrected, provided fundamental matrix and default type.static SingleCorrector
SingleCorrector.create
(com.irurueta.geometry.Point2D leftPoint, com.irurueta.geometry.Point2D rightPoint, FundamentalMatrix fundamentalMatrix, CorrectorType type) Creates an instance of a single corrector using provided left and right points to be corrected, fundamental matrix and provided type.