| 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 |
|---|---|
ComponentIntensityRange |
ComponentIntensityRange.Builder.build()
Builds and returns the
ComponentIntensityRange. |
ComponentIntensityRange |
ChannelIntensityRanges.getComponentRange(int component)
Returns the range for the given component as a
ComponentIntensityRange. |
ComponentIntensityRange |
DisplayIntensityRanges.getComponentRange(int channel,
int component)
Returns the range for the given channel and component as a
ComponentIntensityRange. |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<ComponentIntensityRange> |
ChannelIntensityRanges.getAllComponentRanges()
Returns all explicitly-set component ranges as a list.
|
java.util.List<ComponentIntensityRange> |
DisplayIntensityRanges.getAllComponentRanges(int channel)
Returns all explicitly-set component ranges for the given channel as a list.
|
| Modifier and Type | Method and Description |
|---|---|
ChannelIntensityRanges.Builder |
ChannelIntensityRanges.Builder.componentRange(int component,
ComponentIntensityRange range)
Sets the range for the given component from a
ComponentIntensityRange. |
DisplayIntensityRanges.Builder |
DisplayIntensityRanges.Builder.componentRange(int channel,
int component,
ComponentIntensityRange range)
Sets the range for a specific channel and component from a
ComponentIntensityRange. |
ComponentDisplaySettings.Builder |
ComponentDisplaySettings.Builder.scalingRange(ComponentIntensityRange range)
Sets both minimum and maximum scaling values from a
ComponentIntensityRange. |
| Modifier and Type | Method and Description |
|---|---|
DisplayIntensityRanges.Builder |
DisplayIntensityRanges.Builder.componentRanges(int channel,
java.util.List<ComponentIntensityRange> ranges)
Replaces all component ranges for the given channel with the given list.
|
ChannelIntensityRanges.Builder |
ChannelIntensityRanges.Builder.componentRanges(java.util.List<ComponentIntensityRange> ranges)
Replaces all component ranges with the given list.
|