Uses of Interface
net.imglib2.transform.Transform
-
Packages that use Transform Package Description net.imglib2.transform net.imglib2.transform.integer net.imglib2.transform.integer.permutation net.imglib2.transform.integer.shear net.imglib2.view -
-
Uses of Transform in net.imglib2.transform
Classes in net.imglib2.transform with type parameters of type Transform Modifier and Type Interface Description interface
Transformable<O,T extends Transform>
A class is transformable if it can produce a copy of itself in the transformed space using the supplied transform.Subinterfaces of Transform in net.imglib2.transform Modifier and Type Interface Description interface
InvertibleTransform
Invertible transformation from Zn to Zm .Classes in net.imglib2.transform that implement Transform Modifier and Type Class Description class
InverseTransform
Final implementation of the inverse of anInvertibleTransform
that simply replaces apply by applyInverse and conversely. -
Uses of Transform in net.imglib2.transform.integer
Subinterfaces of Transform in net.imglib2.transform.integer Modifier and Type Interface Description interface
ComponentMapping
Map the components of the source vector to obtain the target vector, for instance transform (x,y,z) to (x,z,y).interface
Mixed
Mixed transform allows to express common integer view transformations such as translation, rotation, rotoinversion, and projection.interface
Slicing
TODOinterface
Translation
TODOClasses in net.imglib2.transform.integer that implement Transform Modifier and Type Class Description class
AbstractMixedTransform
TODOclass
ComponentMappingTransform
Map the components of the source vector to obtain the target vector, for instance transform (x,y,z) to (x,z,y).class
MixedTransform
Mixed transform allows to express common integer view transformations such as translation, rotation, rotoinversion, and projection.class
SequentializeTransform
Transform n-dimensional to m-dimensional coordinates(m<n)
by flattening dimensions>m
.class
SlicingTransform
Map the components of the source vector to a slice of the target space, for instance transform (x,y) to (x,C,y) where C is a constant.class
TranslationTransform
TODOclass
TranslationTransform.InverseTranslationTransform
-
Uses of Transform in net.imglib2.transform.integer.permutation
Classes in net.imglib2.transform.integer.permutation that implement Transform 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 Transform in net.imglib2.transform.integer.shear
Classes in net.imglib2.transform.integer.shear that implement Transform 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 ] -
Uses of Transform in net.imglib2.view
Fields in net.imglib2.view declared as Transform Modifier and Type Field Description protected Transform
TransformView. transformToSource
Fields in net.imglib2.view with type parameters of type Transform Modifier and Type Field Description protected java.util.LinkedList<Transform>
TransformBuilder. transforms
List of transforms that have to be applied when wrapping theTransformBuilder.source
RandomAccess to obtain a RandomAccess in the target coordinate system.Methods in net.imglib2.view that return Transform Modifier and Type Method Description Transform
TransformedRandomAccessible. getTransformToSource()
Get the transformation from view coordinates intosource
coordinates.Transform
TransformView. getTransformToSource()
Methods in net.imglib2.view with parameters of type Transform Modifier and Type Method Description protected void
TransformBuilder. prependTransform(Transform t)
Prepend a transform to theTransformBuilder.transforms
list.protected RandomAccessible<T>
TransformBuilder. wrapGenericTransform(RandomAccessible<T> s, Transform t)
Constructors in net.imglib2.view with parameters of type Transform Constructor Description TransformView(RandomAccessible<T> source, Transform transformToSource)
-