Package qupath.lib.images.servers
Enum Class ZProjectedImageServer.Projection
java.lang.Object
java.lang.Enum<ZProjectedImageServer.Projection>
qupath.lib.images.servers.ZProjectedImageServer.Projection
- All Implemented Interfaces:
Serializable
,Comparable<ZProjectedImageServer.Projection>
,Constable
- Enclosing class:
ZProjectedImageServer
A type of projection on the Z-axis.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static ZProjectedImageServer.Projection[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MEAN
A mean projection on the z-stacks. If the image uses the integer format, the mean will be rounded up to the nearest integer. -
MIN
A minimum projection on the z-stacks. -
MAX
A maximum projection on the z-stacks. -
SUM
A sum projection on the z-stacks. If the z-stack image uses the integer format with a bits depth of less than 32, the projection image server will use thePixelType.FLOAT32
to prevent overflows, unless the z-stack image has the RGB format, in which case overflowing values will be set to 255. -
STANDARD_DEVIATION
A standard deviation projection on the z-stacks. If the image uses the integer format, the standard deviation will be rounded up to the nearest integer. -
MEDIAN
A median projection on the z-stacks. If the image uses the integer format, the median may be rounded up to the nearest integer.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-