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, getOutputDimension
transform, transform
public Distorter invert()
public java.lang.String getName()
public java.lang.String getDescription()
getDescription
in interface Component
getDescription
in class Distorter
public Distorter inverse()
public boolean isInverse(Transformer t)
isInverse
in class Transformer
public void transform(double[] x, double[] y)
transform
in class Transformer
x
- 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