Package | Description |
---|---|
net.imglib2.transform | |
net.imglib2.transform.integer | |
net.imglib2.transform.integer.permutation | |
net.imglib2.transform.integer.shear |
Modifier and Type | Class and Description |
---|---|
class |
InverseTransform
Final implementation of the inverse of an
InvertibleTransform that
simply replaces apply by applyInverse and conversely. |
Modifier and Type | Method and Description |
---|---|
InvertibleTransform |
InvertibleTransform.inverse()
Get the inverse transform.
|
InvertibleTransform |
InverseTransform.inverse() |
Constructor and Description |
---|
InverseTransform(InvertibleTransform transform) |
Modifier and Type | Interface and Description |
---|---|
interface |
Translation
TODO
|
Modifier and Type | Class and Description |
---|---|
class |
SequentializeTransform
Transform n-dimensional to m-dimensional coordinates
(m<n) by
flattening dimensions >m . |
class |
TranslationTransform
TODO
|
class |
TranslationTransform.InverseTranslationTransform |
Modifier and Type | Field and Description |
---|---|
protected InvertibleTransform |
SequentializeTransform.inverse |
Modifier and Type | Method and Description |
---|---|
InvertibleTransform |
SequentializeTransform.inverse() |
Modifier and Type | Class and Description |
---|---|
class |
AbstractPermutationTransform
Bijective integer transform mapping between integer coordinates in [0,n-1].
|
class |
PermutationTransform
Bijective integer transform mapping between integer coordinates in [0,n-1].
|
class |
SingleDimensionPermutationTransform |
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.