Class PixelsWrapper.Coordinates

  • Enclosing class:
    PixelsWrapper

    public static class PixelsWrapper.Coordinates
    extends java.lang.Object
    Class containing 5D pixel coordinates
    • Constructor Summary

      Constructors 
      Constructor Description
      Coordinates​(int x, int y, int c, int z, int t)
      Coordinates constructor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getC()
      Gets C coordinate.
      int getT()
      Gets T coordinate.
      int getX()
      Gets X coordinate.
      int getY()
      Gets Y coordinate.
      int getZ()
      Gets Z coordinate.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Coordinates

        public Coordinates​(int x,
                           int y,
                           int c,
                           int z,
                           int t)
        Coordinates constructor.
        Parameters:
        x - X coordinate.
        y - Y coordinate.
        c - C coordinate.
        z - Z coordinate.
        t - T coordinate.
    • Method Detail

      • getX

        public int getX()
        Gets X coordinate.
        Returns:
        x coordinate.
      • getY

        public int getY()
        Gets Y coordinate.
        Returns:
        Y coordinate.
      • getC

        public int getC()
        Gets C coordinate.
        Returns:
        C coordinate.
      • getZ

        public int getZ()
        Gets Z coordinate.
        Returns:
        Z coordinate.
      • getT

        public int getT()
        Gets T coordinate.
        Returns:
        T coordinate.