Package | Description |
---|---|
net.imglib2.transform.integer | |
net.imglib2.transform.integer.shear |
Modifier and Type | Interface and 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 |
Mixed
Mixed transform allows to express common integer view transformations such as
translation, rotation, rotoinversion, and projection.
|
interface |
Slicing
TODO
|
interface |
Translation
TODO
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractMixedTransform
TODO
|
class |
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
TODO
|
class |
TranslationTransform.InverseTranslationTransform |
Modifier and Type | Class and Description |
---|---|
class |
AbstractShearTransform
Most 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.apply
|
class |
InverseShearTransform
Backward implementation of the most simple case of a shear transform:
coordinate[ shearDimension ] -= coordinate[ referenceDimension ]
|
class |
ShearTransform
Forward implementation of the most simple case of a shear transform:
coordinate[ shearDimension ] += coordinate[ referenceDimension ]
|
Copyright © 2015–2022 ImgLib2. All rights reserved.