Package skyview.geometry.distorter
Class Neat
- java.lang.Object
-
- skyview.geometry.Transformer
-
- skyview.geometry.Distorter
-
- skyview.geometry.distorter.Neat
-
- All Implemented Interfaces:
java.io.Serializable,Component
public class Neat extends Distorter
This class implements the NEAT radial distortion.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description classNeat.NeatInv
-
Constructor Summary
Constructors Constructor Description Neat(double scale, double x0, double y0)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()What does this object do?java.lang.StringgetName()A name for this objectDistorterinverse()Get the inverse of the transformation.booleanisInverse(Transformer test)Are these two transformations, inverses of each other? This method is used to optimize a series of transformations where transformations.voidtransform(double[] in, double[] out)Convert a single point where the output vector is supplied.-
Methods inherited from class skyview.geometry.Distorter
applyBeforeScaling, getInputDimension, getOutputDimension, jacobian
-
Methods inherited from class skyview.geometry.Transformer
transform, transform
-
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from class:DistorterA name for this object
-
getDescription
public java.lang.String getDescription()
Description copied from class:DistorterWhat does this object do?- Specified by:
getDescriptionin interfaceComponent- Specified by:
getDescriptionin classDistorter
-
inverse
public Distorter inverse()
Description copied from class:TransformerGet the inverse of the transformation. If the order matters, then the inverse is to be applied after the original transformation. This is primarily an issue with Converters.
-
isInverse
public boolean isInverse(Transformer test)
Description copied from class:TransformerAre these two transformations, inverses of each other? This method is used to optimize a series of transformations where transformations.- Specified by:
isInversein classTransformer
-
transform
public void transform(double[] in, double[] out)Description copied from class:TransformerConvert a single point where the output vector is supplied.- Specified by:
transformin classTransformer- Parameters:
in- The input vector.out- The output vector, it may be the same as the input vector if the dimensionalities are the same. All transformers are expected to work with aliased inputs and output.
-
-