Uses of Interface
net.imglib2.transform.integer.Mixed
-
Packages that use Mixed Package Description net.imglib2.transform.integer net.imglib2.view -
-
Uses of Mixed in net.imglib2.transform.integer
Subinterfaces of Mixed in net.imglib2.transform.integer Modifier and Type Interface Description interface
ComponentMapping
Map the components of the source vector to obtain the target vector, for instance transform (x,y,z) to (x,z,y).interface
Slicing
TODOinterface
Translation
TODOClasses in net.imglib2.transform.integer that implement Mixed Modifier and Type Class Description class
AbstractMixedTransform
TODOclass
ComponentMappingTransform
Map the components of the source vector to obtain the target vector, for instance transform (x,y,z) to (x,z,y).class
MixedTransform
Mixed transform allows to express common integer view transformations such as translation, rotation, rotoinversion, and projection.class
SlicingTransform
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
TranslationTransform
TODOclass
TranslationTransform.InverseTranslationTransform
Methods in net.imglib2.transform.integer that return types with arguments of type Mixed Modifier and Type Method Description java.lang.Class<Mixed>
MixedTransform. getConcatenableClass()
java.lang.Class<Mixed>
MixedTransform. getPreConcatenableClass()
Methods in net.imglib2.transform.integer with parameters of type Mixed Modifier and Type Method Description MixedTransform
MixedTransform. concatenate(Mixed t)
MixedTransform
MixedTransform. preConcatenate(Mixed t)
void
MixedTransform. set(Mixed transform)
set parameters totransform
. -
Uses of Mixed in net.imglib2.view
Methods in net.imglib2.view with parameters of type Mixed Modifier and Type Method Description static boolean
TransformBuilder. isComponentMapping(Mixed t)
static boolean
TransformBuilder. isIdentity(Mixed t)
static boolean
TransformBuilder. isSlicing(Mixed t)
static boolean
TransformBuilder. isTranslation(Mixed t)
Constructors in net.imglib2.view with parameters of type Mixed Constructor Description MixedTransformView(RandomAccessible<T> source, Mixed transformToSource)
-