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 TypeInterfaceDescriptioninterfaceTransformable<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 TypeInterfaceDescriptioninterfaceInvertible transformation from Zn to Zm .Classes in net.imglib2.transform that implement TransformModifier and TypeClassDescriptionfinal classFinal implementation of the inverse of anInvertibleTransformthat simply replaces apply by applyInverse and conversely. -
Uses of Transform in net.imglib2.transform.integer
Subinterfaces of Transform in net.imglib2.transform.integerModifier and TypeInterfaceDescriptioninterfaceMap the components of the source vector to obtain the target vector, for instance transform (x,y,z) to (x,z,y).interfaceMixed transform allows to express common integer view transformations such as translation, rotation, rotoinversion, and projection.interfaceTODOinterfaceTODOClasses in net.imglib2.transform.integer that implement TransformModifier and TypeClassDescriptionclassTODOclassMap the components of the source vector to obtain the target vector, for instance transform (x,y,z) to (x,z,y).classMixed transform allows to express common integer view transformations such as translation, rotation, rotoinversion, and projection.classTransform n-dimensional to m-dimensional coordinates(m<n)by flattening dimensions>m.classMap 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.classTODOclass -
Uses of Transform in net.imglib2.transform.integer.permutation
Classes in net.imglib2.transform.integer.permutation that implement TransformModifier and TypeClassDescriptionclassBijective integer transform mapping between integer coordinates in [0,n-1].classBijective 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 TypeClassDescriptionclassMost 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.applyclassBackward implementation of the most simple case of a shear transform: coordinate[ shearDimension ] -= coordinate[ referenceDimension ]classForward 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.transformsList of transforms that have to be applied when wrapping theTransformBuilder.sourceRandomAccess 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 intosourcecoordinates.TransformView.getTransformToSource()Methods in net.imglib2.view with parameters of type TransformModifier and TypeMethodDescriptionprotected voidTransformBuilder.prependTransform(Transform t) Prepend a transform to theTransformBuilder.transformslist.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)