public class DSS.DSSInv extends Distorter
| Constructor and Description |
|---|
DSSInv() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getDescription()
Get a description of this component
|
java.lang.String |
getName()
Get the name of this component
|
Distorter |
inverse()
Get the inverse Distorter
|
Distorter |
invert()
Get the forward distorter back
|
boolean |
isInverse(Transformer t)
Is this the inverse of another distorter?
|
double[][] |
jacobian(double[] x)
Get the local Jacobian for the distortion.
|
void |
transform(double[] x,
double[] y)
Transform a point
|
applyBeforeScaling, getInputDimension, getOutputDimensiontransform, transformpublic Distorter invert()
public java.lang.String getName()
public java.lang.String getDescription()
getDescription in interface ComponentgetDescription in class Distorterpublic Distorter inverse()
public boolean isInverse(Transformer t)
isInverse in class Transformerpublic void transform(double[] x,
double[] y)
transform in class Transformerx - The input vector.y - 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