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

    Modifier and Type
    Class
    Description
    class 
    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.
    Modifier and Type
    Method
    Description
    SingleCorrector.create()
    Creates an instance of a single corrector using default type.
    SingleCorrector.create(CorrectorType type)
    Creates an instance of a single corrector using provided type.
    SingleCorrector.create(FundamentalMatrix fundamentalMatrix)
    Creates an instance of a single corrector using provided fundamental matrix and default type.
    SingleCorrector.create(FundamentalMatrix fundamentalMatrix, CorrectorType type)
    Creates an instance of a single corrector using provided fundamental matrix and provided type.
    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.
    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.
    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.
    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.