Package fr.igred.omero.repository
Class PixelsWrapper.Coordinates
- java.lang.Object
-
- fr.igred.omero.repository.PixelsWrapper.Coordinates
-
- Enclosing class:
- PixelsWrapper
public static class PixelsWrapper.Coordinates extends 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.
-
-
-
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.
-
-