Uses of Class
com.irurueta.ar.calibration.DistortionException

Packages that use DistortionException
Package
Description
This package contains classes used for camera calibration on 3D reconstruction
  • Uses of DistortionException in com.irurueta.ar.calibration

    Modifier and Type
    Class
    Description
    class 
    Raised when an error occurs while using a RadialDistortion.
    Modifier and Type
    Method
    Description
    com.irurueta.geometry.Point2D
    Distortion.distort(com.irurueta.geometry.Point2D undistortedPoint)
    Distorts provided 2D point.
    abstract void
    Distortion.distort(com.irurueta.geometry.Point2D undistortedPoint, com.irurueta.geometry.Point2D distortedPoint)
    Distorts provided 2D point and stores result into provided distorted point.
    List<com.irurueta.geometry.Point2D>
    Distortion.distort(List<com.irurueta.geometry.Point2D> undistortedPoints)
    Distorts provided 2D points.
    void
    Distortion.distort(List<com.irurueta.geometry.Point2D> undistortedPoints, List<com.irurueta.geometry.Point2D> distortedPoints)
    Distorts provided 2D points and stores them into provided distorted points list.
    com.irurueta.geometry.Point2D
    Distortion.undistort(com.irurueta.geometry.Point2D distortedPoint)
    Un-distorts provided 2D point.
    abstract void
    Distortion.undistort(com.irurueta.geometry.Point2D distortedPoint, com.irurueta.geometry.Point2D undistortedPoint)
    Un-distorts provided 2D point and stores result into provided undistorted point.
    List<com.irurueta.geometry.Point2D>
    Distortion.undistort(List<com.irurueta.geometry.Point2D> distortedPoints)
    Un-distorts provided 2D points.
    void
    Distortion.undistort(List<com.irurueta.geometry.Point2D> distortedPoints, List<com.irurueta.geometry.Point2D> undistortedPoints)
    Un-distorts provided 2D points and stores them into provided undistorted points list.