| Package | Description |
|---|---|
| org.micromanager.display |
This package contains classes related to Micro-Manager's display windows,
which are used to show image data and metadata to the user.
|
| Modifier and Type | Method and Description |
|---|---|
static ChannelIntensityRanges.Builder |
ChannelIntensityRanges.builder()
Returns a new builder with no components set (all defaults).
|
ChannelIntensityRanges.Builder |
ChannelIntensityRanges.Builder.componentMaximum(int component,
long max)
Sets only the maximum (white point) for the given component.
|
ChannelIntensityRanges.Builder |
ChannelIntensityRanges.Builder.componentMinimum(int component,
long min)
Sets only the minimum (black point) for the given component.
|
ChannelIntensityRanges.Builder |
ChannelIntensityRanges.Builder.componentRange(int component,
ComponentIntensityRange range)
Sets the range for the given component from a
ComponentIntensityRange. |
ChannelIntensityRanges.Builder |
ChannelIntensityRanges.Builder.componentRange(int component,
long min,
long max)
Sets the range for the given component by explicit min and max values.
|
ChannelIntensityRanges.Builder |
ChannelIntensityRanges.Builder.componentRanges(java.util.List<ComponentIntensityRange> ranges)
Replaces all component ranges with the given list.
|
ChannelIntensityRanges.Builder |
ChannelIntensityRanges.copyBuilder()
Returns a builder pre-populated with this instance's component ranges.
|