Package | Description |
---|---|
net.imglib2.transform.integer.shear |
Class and Description |
---|
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
|
ShearTransform
Forward implementation of the most simple case of a shear transform:
coordinate[ shearDimension ] += coordinate[ referenceDimension ]
|
Copyright © 2015–2022 ImgLib2. All rights reserved.