Uses of Interface
net.imglib2.transform.Transform
Packages that use Transform
Package
Description
-
Uses of Transform in net.imglib2.transform
Classes in net.imglib2.transform with type parameters of type TransformModifier and TypeInterfaceDescriptioninterface
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.transformModifier and TypeInterfaceDescriptioninterface
Invertible transformation from Zn to Zm .Classes in net.imglib2.transform that implement TransformModifier and TypeClassDescriptionfinal class
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.integerModifier and TypeInterfaceDescriptioninterface
Map the components of the source vector to obtain the target vector, for instance transform (x,y,z) to (x,z,y).interface
Mixed transform allows to express common integer view transformations such as translation, rotation, rotoinversion, and projection.interface
TODOinterface
TODOClasses in net.imglib2.transform.integer that implement TransformModifier and TypeClassDescriptionclass
TODOclass
Map the components of the source vector to obtain the target vector, for instance transform (x,y,z) to (x,z,y).class
Mixed transform allows to express common integer view transformations such as translation, rotation, rotoinversion, and projection.class
Transform n-dimensional to m-dimensional coordinates(m<n)
by flattening dimensions>m
.class
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
TODOclass
-
Uses of Transform in net.imglib2.transform.integer.permutation
Classes in net.imglib2.transform.integer.permutation that implement TransformModifier and TypeClassDescriptionclass
Bijective integer transform mapping between integer coordinates in [0,n-1].class
Bijective integer transform mapping between integer coordinates in [0,n-1].class
-
Uses of Transform in net.imglib2.transform.integer.shear
Classes in net.imglib2.transform.integer.shear that implement TransformModifier and TypeClassDescriptionclass
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
Backward implementation of the most simple case of a shear transform: coordinate[ shearDimension ] -= coordinate[ referenceDimension ]class
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 TransformFields in net.imglib2.view with type parameters of type TransformModifier and TypeFieldDescriptionprotected 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 TransformModifier and TypeMethodDescriptionTransformedRandomAccessible.getTransformToSource()
Get the transformation from view coordinates intosource
coordinates.TransformView.getTransformToSource()
Methods in net.imglib2.view with parameters of type TransformModifier and TypeMethodDescriptionprotected 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 TransformModifierConstructorDescriptionTransformView
(RandomAccessible<T> source, Transform transformToSource)