Package qupath.lib.analysis.heatmaps
Enum Class DensityMaps.DensityMapType
- All Implemented Interfaces:
Serializable
,Comparable<DensityMaps.DensityMapType>
,Constable
- Enclosing class:
DensityMaps
Density map types.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptiontoString()
static DensityMaps.DensityMapType
Returns the enum constant of this class with the specified name.static DensityMaps.DensityMapType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SUM
No normalization; maps provide raw object counts in a defined radius. This is equivalent to applying a circular sum filter to object counts per pixel. -
GAUSSIAN
Gaussian-weighted area normalization; maps provide weighted averaged object counts in a defined radius. This is equivalent to applying a Gaussian filter to object counts per pixel. -
PERCENT
Maps contain at least two channels. The last channel contains the total count of objects within the density region. All other channels contain the proportion of objects meeting specific criteria, expressed as a percentage of the corresponding total object count.This is useful, for example, to identify the Positive % cells.
-
-
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
-
toString
- Overrides:
toString
in classEnum<DensityMaps.DensityMapType>
-