A DTO to describe the size of images obtained from imaging experiments This class should be used whenever the size of an image in context of imaging projects needs to be described
Type | Name and description |
---|---|
java.lang.Integer |
channel Channel from which the image was obtained |
java.lang.Integer |
timePoint Describes the time point within a time series, it correlates with the frames of an image One frame is one image taken at time point x |
java.lang.Integer |
x Size on the x-axis in px |
java.lang.Integer |
y Size on the y-axis in px |
java.lang.Integer |
z Size on the z-axis in px |
Constructor and description |
---|
ImageSize
(java.lang.Integer timePoint, java.lang.Integer channel, java.lang.Integer x, java.lang.Integer y, java.lang.Integer z) @param timePoint {@see ImageSize#timePoint} |
Methods inherited from class | Name |
---|---|
class java.lang.Object |
java.lang.Object#wait(long), java.lang.Object#wait(long, int), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Channel from which the image was obtained
Describes the time point within a time series, it correlates with the frames of an image One frame is one image taken at time point x e.g time point 10
Size on the x-axis in px
Size on the y-axis in px
Size on the z-axis in px
Groovy Documentation