public interface PathTransformer
Path
s should implement this interface.
Methods accepting integer values assume those to be indexes into the image's samples, with z being 0-based. Methods accepting double values assume those to be world coordinates (i.e. spatially calibrated).
If the corresponding point is not found, the transformed values are set to
Integer.MIN_VALUE
or Double.NaN
Modifier and Type | Method and Description |
---|---|
void |
transformPoint(double x,
double y,
double z,
double[] transformed) |
void |
transformPoint(double x,
double y,
double z,
int[] transformed) |
void |
transformPoint(int x,
int y,
int z,
double[] transformed) |
void |
transformPoint(int x,
int y,
int z,
int[] transformed) |
void transformPoint(double x, double y, double z, double[] transformed)
void transformPoint(double x, double y, double z, int[] transformed)
void transformPoint(int x, int y, int z, int[] transformed)
void transformPoint(int x, int y, int z, double[] transformed)
Copyright © 2015–2021 Fiji. All rights reserved.