Uses of Interface
net.imglib2.transform.InvertibleTransform
-
Packages that use InvertibleTransform Package Description net.imglib2.transform net.imglib2.transform.integer net.imglib2.transform.integer.permutation net.imglib2.transform.integer.shear -
-
Uses of InvertibleTransform in net.imglib2.transform
Classes in net.imglib2.transform that implement InvertibleTransform Modifier and Type Class Description class
InverseTransform
Final implementation of the inverse of anInvertibleTransform
that simply replaces apply by applyInverse and conversely.Methods in net.imglib2.transform that return InvertibleTransform Modifier and Type Method Description InvertibleTransform
InverseTransform. inverse()
InvertibleTransform
InvertibleTransform. inverse()
Get the inverse transform.Constructors in net.imglib2.transform with parameters of type InvertibleTransform Constructor Description InverseTransform(InvertibleTransform transform)
-
Uses of InvertibleTransform in net.imglib2.transform.integer
Subinterfaces of InvertibleTransform in net.imglib2.transform.integer Modifier and Type Interface Description interface
Translation
TODOClasses in net.imglib2.transform.integer that implement InvertibleTransform Modifier and Type Class Description class
SequentializeTransform
Transform n-dimensional to m-dimensional coordinates(m<n)
by flattening dimensions>m
.class
TranslationTransform
TODOclass
TranslationTransform.InverseTranslationTransform
Fields in net.imglib2.transform.integer declared as InvertibleTransform Modifier and Type Field Description protected InvertibleTransform
SequentializeTransform. inverse
Methods in net.imglib2.transform.integer that return InvertibleTransform Modifier and Type Method Description InvertibleTransform
SequentializeTransform. inverse()
-
Uses of InvertibleTransform in net.imglib2.transform.integer.permutation
Classes in net.imglib2.transform.integer.permutation that implement InvertibleTransform Modifier and Type Class Description class
AbstractPermutationTransform
Bijective integer transform mapping between integer coordinates in [0,n-1].class
PermutationTransform
Bijective integer transform mapping between integer coordinates in [0,n-1].class
SingleDimensionPermutationTransform
-
Uses of InvertibleTransform in net.imglib2.transform.integer.shear
Classes in net.imglib2.transform.integer.shear that implement InvertibleTransform Modifier and Type Class Description class
AbstractShearTransform
Most simple case of a shear transform that just implements for a integer valued coordinate: coordinate[ shearDimension ] += coordinate[ referenceDimension ] (forward) coordinate[ shearDimension ] -= coordinate[ referenceDimension ] (backward) This abstract class holds the inverse and implements applyInverse in terms of inverse.applyclass
InverseShearTransform
Backward implementation of the most simple case of a shear transform: coordinate[ shearDimension ] -= coordinate[ referenceDimension ]class
ShearTransform
Forward implementation of the most simple case of a shear transform: coordinate[ shearDimension ] += coordinate[ referenceDimension ]
-