Uses of Interface
net.imglib2.transform.integer.BoundingBoxTransform
Packages that use BoundingBoxTransform
-
Uses of BoundingBoxTransform in net.imglib2.transform.integer
Subinterfaces of BoundingBoxTransform 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 BoundingBoxTransformModifier 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.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 BoundingBoxTransform in net.imglib2.transform.integer.shear
Classes in net.imglib2.transform.integer.shear that implement BoundingBoxTransformModifier 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 ]