Package sc.fiji.snt

Interface PathTransformer


public interface PathTransformer
Classes transforming Paths 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

  • Method Summary

    Modifier and Type
    Method
    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)
     
  • Method Details

    • transformPoint

      void transformPoint(double x, double y, double z, double[] transformed)
    • transformPoint

      void transformPoint(double x, double y, double z, int[] transformed)
    • transformPoint

      void transformPoint(int x, int y, int z, int[] transformed)
    • transformPoint

      void transformPoint(int x, int y, int z, double[] transformed)