public interface Transform
Applying the transformation to a n-dimensional integer source vector yields a m-dimensional integer target vector.
Modifier and Type | Method and Description |
---|---|
void |
apply(int[] source,
int[] target)
Apply the
Transform to a source vector to obtain a target vector. |
void |
apply(Localizable source,
Positionable target)
|
void |
apply(long[] source,
long[] target)
Apply the
Transform to a source vector to obtain a target vector. |
int |
numSourceDimensions()
Returns n, the dimension of the source vector.
|
int |
numTargetDimensions()
Returns m, the dimension of the target vector.
|
int numSourceDimensions()
int numTargetDimensions()
void apply(long[] source, long[] target)
Transform
to a source vector to obtain a target vector.source
- source coordinates.target
- set this to the target coordinates.void apply(int[] source, int[] target)
Transform
to a source vector to obtain a target vector.source
- source coordinates.target
- set this to the target coordinates.void apply(Localizable source, Positionable target)
source
- source coordinates.target
- set this to the target coordinates.Copyright © 2015–2022 ImgLib2. All rights reserved.