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 interfaceTransformable<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 interfaceInvertibleTransformInvertible transformation from Zn to Zm .Classes in net.imglib2.transform that implement Transform Modifier and Type Class Description classInverseTransformFinal 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.integer Modifier and Type Interface Description interfaceComponentMappingMap the components of the source vector to obtain the target vector, for instance transform (x,y,z) to (x,z,y).interfaceMixedMixed transform allows to express common integer view transformations such as translation, rotation, rotoinversion, and projection.interfaceSlicingTODOinterfaceTranslationTODOClasses in net.imglib2.transform.integer that implement Transform Modifier and Type Class Description classAbstractMixedTransformTODOclassComponentMappingTransformMap the components of the source vector to obtain the target vector, for instance transform (x,y,z) to (x,z,y).classMixedTransformMixed transform allows to express common integer view transformations such as translation, rotation, rotoinversion, and projection.classSequentializeTransformTransform n-dimensional to m-dimensional coordinates(m<n)by flattening dimensions>m.classSlicingTransformMap 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.classTranslationTransformTODOclassTranslationTransform.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 classAbstractPermutationTransformBijective integer transform mapping between integer coordinates in [0,n-1].classPermutationTransformBijective integer transform mapping between integer coordinates in [0,n-1].classSingleDimensionPermutationTransform -
Uses of Transform in net.imglib2.transform.integer.shear
Classes in net.imglib2.transform.integer.shear that implement Transform Modifier and Type Class Description classAbstractShearTransformMost 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.applyclassInverseShearTransformBackward implementation of the most simple case of a shear transform: coordinate[ shearDimension ] -= coordinate[ referenceDimension ]classShearTransformForward 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 private TransformTransformRandomAccess. transformToSourceprotected TransformTransformView. transformToSourceFields in net.imglib2.view with type parameters of type Transform Modifier and Type Field Description protected java.util.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 Transform Modifier and Type Method Description TransformTransformedRandomAccessible. getTransformToSource()Get the transformation from view coordinates intosourcecoordinates.TransformTransformView. getTransformToSource()Methods in net.imglib2.view with parameters of type Transform Modifier and Type Method Description protected 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 Transform Constructor Description TransformRandomAccess(RandomAccess<T> source, Transform transformToSource)TransformView(RandomAccessible<T> source, Transform transformToSource)
-