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 TypeClassDescriptionclass
Fixes matched pairs of points so that they perfectly follow a given epipolar geometry.class
Fixes matched pairs of points so that they perfectly follow a given epipolar geometry.Methods in com.irurueta.ar.epipolar that return CorrectorModifier and TypeMethodDescriptionstatic Corrector
Corrector.create()
Creates an instance of a corrector using default type.static Corrector
Corrector.create
(CorrectorListener listener) Creates an instance of a corrector using default type.static Corrector
Corrector.create
(CorrectorListener listener, CorrectorType type) Creates an instance of a corrector using provided type.static Corrector
Corrector.create
(CorrectorType type) Creates an instance of a corrector using provided type.static Corrector
Corrector.create
(FundamentalMatrix fundamentalMatrix) Creates an instance of a corrector using provided fundamental matrix and default type.static Corrector
Corrector.create
(FundamentalMatrix fundamentalMatrix, CorrectorListener listener) Creates an instance of a corrector using provided fundamental matrix and default type.static Corrector
Corrector.create
(FundamentalMatrix fundamentalMatrix, CorrectorListener listener, CorrectorType type) Creates an instance of a corrector using provided fundamental matrix and provided type.static Corrector
Corrector.create
(FundamentalMatrix fundamentalMatrix, CorrectorType type) Creates an instance of a corrector using provided fundamental matrix and provided type.static Corrector
Corrector.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 Corrector
Corrector.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 Corrector
Corrector.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 Corrector
Corrector.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 Corrector
Corrector.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 Corrector
Corrector.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 Corrector
Corrector.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 Corrector
Corrector.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 TypeMethodDescriptionvoid
CorrectorListener.onCorrectEnd
(Corrector corrector) Called when correction of points finishes.void
CorrectorListener.onCorrectProgressChange
(Corrector corrector, float progress) Called when progress of correction of points changes significantly.void
CorrectorListener.onCorrectStart
(Corrector corrector) Called when correction of points starts.