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

public static enum ZProjectedImageServer.Projection extends Enum<ZProjectedImageServer.Projection>
A type of projection on the Z-axis.
  • Enum Constant Details

    • MEAN

      public static final ZProjectedImageServer.Projection 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

      public static final ZProjectedImageServer.Projection MIN
      A minimum projection on the z-stacks.
    • MAX

      public static final ZProjectedImageServer.Projection MAX
      A maximum projection on the z-stacks.
    • SUM

      public static final ZProjectedImageServer.Projection 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 the PixelType.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

      public static final ZProjectedImageServer.Projection 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

      public static final ZProjectedImageServer.Projection 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

      public static ZProjectedImageServer.Projection[] 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

      public static ZProjectedImageServer.Projection valueOf(String name)
      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 name
      NullPointerException - if the argument is null