Serializable, Componentpublic class Neat.NeatInv extends Distorter
| Constructor | Description |
|---|---|
NeatInv() |
| Modifier and Type | Method | Description |
|---|---|---|
String |
getDescription() |
What does this object do?
|
String |
getName() |
A name for this object
|
Distorter |
inverse() |
Get the inverse of the transformation.
|
boolean |
isInverse(Transformer test) |
Are these two transformations, inverses of each other? This
method is used to optimize a series of transformations where
transformations.
|
double[][] |
jacobian(double[] x) |
Get the local Jacobian for the distortion.
|
void |
transform(double[] in,
double[] out) |
Convert a single point where the output vector is supplied.
|
applyBeforeScaling, getInputDimension, getOutputDimensionclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waittransform, transformpublic String getDescription()
DistortergetDescription in interface ComponentgetDescription in class Distorterpublic boolean isInverse(Transformer test)
TransformerisInverse in class Transformerpublic Distorter inverse()
Transformerpublic void transform(double[] in,
double[] out)
Transformertransform in class Transformerin - 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.public double[][] jacobian(double[] x)
Distorter