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 TypeClassDescriptionclassFixes 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.classFixes 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 SingleCorrectorSingleCorrector.create()Creates an instance of a single corrector using default type.static SingleCorrectorSingleCorrector.create(CorrectorType type) Creates an instance of a single corrector using provided type.static SingleCorrectorSingleCorrector.create(FundamentalMatrix fundamentalMatrix) Creates an instance of a single corrector using provided fundamental matrix and default type.static SingleCorrectorSingleCorrector.create(FundamentalMatrix fundamentalMatrix, CorrectorType type) Creates an instance of a single corrector using provided fundamental matrix and provided type.static SingleCorrectorSingleCorrector.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 SingleCorrectorSingleCorrector.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 SingleCorrectorSingleCorrector.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 SingleCorrectorSingleCorrector.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.