Uses of Class
com.irurueta.ar.epipolar.Corrector
Packages that use Corrector
Package
Description
This package contains classes related to epipolar geometry, such as
Fundamental or Essential matrices and matched points correctors.
-
Uses of Corrector in com.irurueta.ar.epipolar
Subclasses of Corrector in com.irurueta.ar.epipolarModifier and TypeClassDescriptionclassFixes matched pairs of points so that they perfectly follow a given epipolar geometry.classFixes matched pairs of points so that they perfectly follow a given epipolar geometry.Methods in com.irurueta.ar.epipolar that return CorrectorModifier and TypeMethodDescriptionstatic CorrectorCorrector.create()Creates an instance of a corrector using default type.static CorrectorCorrector.create(CorrectorListener listener) Creates an instance of a corrector using default type.static CorrectorCorrector.create(CorrectorListener listener, CorrectorType type) Creates an instance of a corrector using provided type.static CorrectorCorrector.create(CorrectorType type) Creates an instance of a corrector using provided type.static CorrectorCorrector.create(FundamentalMatrix fundamentalMatrix) Creates an instance of a corrector using provided fundamental matrix and default type.static CorrectorCorrector.create(FundamentalMatrix fundamentalMatrix, CorrectorListener listener) Creates an instance of a corrector using provided fundamental matrix and default type.static CorrectorCorrector.create(FundamentalMatrix fundamentalMatrix, CorrectorListener listener, CorrectorType type) Creates an instance of a corrector using provided fundamental matrix and provided type.static CorrectorCorrector.create(FundamentalMatrix fundamentalMatrix, CorrectorType type) Creates an instance of a corrector using provided fundamental matrix and provided type.static CorrectorCorrector.create(List<com.irurueta.geometry.Point2D> leftPoints, List<com.irurueta.geometry.Point2D> rightPoints) Creates an instance of a corrector using provided left and right points to be corrected and default type.static CorrectorCorrector.create(List<com.irurueta.geometry.Point2D> leftPoints, List<com.irurueta.geometry.Point2D> rightPoints, CorrectorListener listener) Creates an instance of a corrector using provided left and right points to be corrected and provided type.static CorrectorCorrector.create(List<com.irurueta.geometry.Point2D> leftPoints, List<com.irurueta.geometry.Point2D> rightPoints, CorrectorListener listener, CorrectorType type) Creates an instance of a corrector using provided left and right points to be corrected and provided type.static CorrectorCorrector.create(List<com.irurueta.geometry.Point2D> leftPoints, List<com.irurueta.geometry.Point2D> rightPoints, CorrectorType type) Creates an instance of a corrector using provided left and right points to be corrected and provided type.static CorrectorCorrector.create(List<com.irurueta.geometry.Point2D> leftPoints, List<com.irurueta.geometry.Point2D> rightPoints, FundamentalMatrix fundamentalMatrix) Creates an instance of a corrector using provided left and right points to be corrected, provided fundamental matrix and default type.static CorrectorCorrector.create(List<com.irurueta.geometry.Point2D> leftPoints, List<com.irurueta.geometry.Point2D> rightPoints, FundamentalMatrix fundamentalMatrix, CorrectorListener listener) Creates an instance of a corrector using provided left and right points to be corrected, provided fundamental matrix and provided type.static CorrectorCorrector.create(List<com.irurueta.geometry.Point2D> leftPoints, List<com.irurueta.geometry.Point2D> rightPoints, FundamentalMatrix fundamentalMatrix, CorrectorListener listener, CorrectorType type) Creates an instance of a corrector using provided left and right points to be corrected, provided fundamental matrix and provided type.static CorrectorCorrector.create(List<com.irurueta.geometry.Point2D> leftPoints, List<com.irurueta.geometry.Point2D> rightPoints, FundamentalMatrix fundamentalMatrix, CorrectorType type) Creates an instance of a corrector using provided left and right points to be corrected, provided fundamental matrix and provided type.Methods in com.irurueta.ar.epipolar with parameters of type CorrectorModifier and TypeMethodDescriptionvoidCorrectorListener.onCorrectEnd(Corrector corrector) Called when correction of points finishes.voidCorrectorListener.onCorrectProgressChange(Corrector corrector, float progress) Called when progress of correction of points changes significantly.voidCorrectorListener.onCorrectStart(Corrector corrector) Called when correction of points starts.