public interface Interval extends RealInterval, Dimensions
{x∈Zn|mind≤ xd≤maxd;d∈{0… n-1}}
An Interval
over the discrete source domain. Note that this
does not imply that for all coordinates in the
Interval
function values exist or can be generated. It only defines
where the minimum and maximum source coordinates are. E.g. an
IterableInterval
has a limited number of values and a source
coordinate for each. By that, minimum and maximum are defined but the
Interval
does not define a value for all coordinates in between.
Modifier and Type | Method and Description |
---|---|
long |
max(int d)
Get the maximum in dimension d.
|
void |
max(long[] max)
Write the maximum of each dimension into long[].
|
void |
max(Positionable max)
Sets a
Positionable to the maximum of this Interval |
long |
min(int d)
Get the minimum in dimension d.
|
void |
min(long[] min)
Write the minimum of each dimension into long[].
|
void |
min(Positionable min)
Sets a
Positionable to the minimum of this Interval |
realMax, realMax, realMax, realMin, realMin, realMin
dimension, dimensions
numDimensions
long min(int d)
d
- dimensionvoid min(long[] min)
min
- void min(Positionable min)
Positionable
to the minimum of this Interval
min
- long max(int d)
d
- dimensionvoid max(long[] max)
max
- void max(Positionable max)
Positionable
to the maximum of this Interval
max
- Copyright © 2009–2018 ImgLib2. All rights reserved.