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 classInverseTransformFinal implementation of the inverse of anInvertibleTransformthat simply replaces apply by applyInverse and conversely.Fields in net.imglib2.transform declared as InvertibleTransform Modifier and Type Field Description private InvertibleTransformInverseTransform. inverseMethods in net.imglib2.transform that return InvertibleTransform Modifier and Type Method Description InvertibleTransformInverseTransform. inverse()InvertibleTransformInvertibleTransform. 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 interfaceTranslationTODOClasses in net.imglib2.transform.integer that implement InvertibleTransform Modifier and Type Class Description classSequentializeTransformTransform n-dimensional to m-dimensional coordinates(m<n)by flattening dimensions>m.classTranslationTransformTODOclassTranslationTransform.InverseTranslationTransformFields in net.imglib2.transform.integer declared as InvertibleTransform Modifier and Type Field Description protected InvertibleTransformSequentializeTransform. inverseMethods in net.imglib2.transform.integer that return InvertibleTransform Modifier and Type Method Description InvertibleTransformSequentializeTransform. 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 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 InvertibleTransform in net.imglib2.transform.integer.shear
Classes in net.imglib2.transform.integer.shear that implement InvertibleTransform 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 ]
-