| Package | Description |
|---|---|
| net.imglib2.transform.integer.shear |
| Modifier and Type | Class and Description |
|---|---|
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 ]
|
| Modifier and Type | Field and Description |
|---|---|
protected AbstractShearTransform |
AbstractShearTransform.inverse |
| Modifier and Type | Method and Description |
|---|---|
AbstractShearTransform |
InverseShearTransform.copy() |
abstract AbstractShearTransform |
AbstractShearTransform.copy() |
AbstractShearTransform |
AbstractShearTransform.inverse() |
| Constructor and Description |
|---|
AbstractShearTransform(int nDim,
int shearDimension,
int referenceDimension,
AbstractShearTransform inverse) |
InverseShearTransform(int nDim,
int shearDimension,
int referenceDimension,
AbstractShearTransform inverse)
Protected constructor for passing an inverse to avoid construction of unnecessary objects.
|
ShearTransform(int nDim,
int shearDimension,
int referenceDimension,
AbstractShearTransform inverse)
Protected constructor for passing an inverse to avoid construction of unnecessary objects.
|
Copyright © 2015–2022 ImgLib2. All rights reserved.