| 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 DisplayIntensityRanges.Builder |
DisplayIntensityRanges.builder()
Returns a new builder with no channels or components set (all defaults).
|
DisplayIntensityRanges.Builder |
DisplayIntensityRanges.Builder.channelRanges(java.util.List<ChannelIntensityRanges> channelRanges)
Replaces all channel ranges with the given list.
|
DisplayIntensityRanges.Builder |
DisplayIntensityRanges.Builder.componentMaximum(int channel,
int component,
long max)
Sets only the maximum (white point) for a specific channel and component.
|
DisplayIntensityRanges.Builder |
DisplayIntensityRanges.Builder.componentMinimum(int channel,
int component,
long min)
Sets only the minimum (black point) for a specific channel and component.
|
DisplayIntensityRanges.Builder |
DisplayIntensityRanges.Builder.componentRange(int channel,
int component,
ComponentIntensityRange range)
Sets the range for a specific channel and component from a
ComponentIntensityRange. |
DisplayIntensityRanges.Builder |
DisplayIntensityRanges.Builder.componentRange(int channel,
int component,
long min,
long max)
Sets the range for a specific channel and component by explicit min/max values.
|
DisplayIntensityRanges.Builder |
DisplayIntensityRanges.Builder.componentRanges(int channel,
java.util.List<ComponentIntensityRange> ranges)
Replaces all component ranges for the given channel with the given list.
|
DisplayIntensityRanges.Builder |
DisplayIntensityRanges.copyBuilder()
Returns a builder pre-populated with all channel ranges from this instance.
|