Class AbstractWrappedInterval<I extends Interval>
java.lang.Object
net.imglib2.AbstractWrappedRealInterval<I>
net.imglib2.AbstractWrappedInterval<I>
- All Implemented Interfaces:
Dimensions, EuclideanSpace, Interval, RealInterval
- Direct Known Subclasses:
AbstractConvertedIterableInterval, AbstractConvertedIterableRandomAccessibleInterval, AbstractConvertedRandomAccessibleInterval, IterableRandomAccessibleInterval, IterableTransformBuilder.IterableIntervalView, IterableTransformBuilder.Slice, IterableTransformBuilder.SubInterval
public abstract class AbstractWrappedInterval<I extends Interval>
extends AbstractWrappedRealInterval<I>
implements Interval
Convenient base class for
IterableIntervals,
RandomAccessibleIntervals, etc that forward
the Interval interface to, for example, their source accessible.-
Field Summary
Fields inherited from class AbstractWrappedRealInterval
sourceInterval -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionlongdimension(int d) Default implementation ofDimensions.dimension(int).voiddimensions(long[] dimensions) Write the number of pixels in each dimension into long[].longmax(int d) Get the maximum in dimension d.voidmax(long[] max) Write the maximum of each dimension into long[].voidmax(Positionable max) Sets aPositionableto the maximum of thisIntervallongmin(int d) Get the minimum in dimension d.voidmin(long[] min) Write the minimum of each dimension into long[].voidmin(Positionable min) Sets aPositionableto the minimum of thisIntervalMethods inherited from class AbstractWrappedRealInterval
getSource, numDimensions, realMax, realMax, realMax, realMin, realMin, realMinMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Dimensions
dimensions, dimensionsAsLongArray, dimensionsAsPointMethods inherited from interface EuclideanSpace
numDimensionsMethods inherited from interface Interval
maxAsLongArray, maxAsPoint, minAsLongArray, minAsPoint, realMax, realMinMethods inherited from interface RealInterval
maxAsDoubleArray, maxAsRealPoint, minAsDoubleArray, minAsRealPoint, realMax, realMax, realMin, realMin
-
Constructor Details
-
AbstractWrappedInterval
-
-
Method Details
-
dimensions
public void dimensions(long[] dimensions) Description copied from interface:DimensionsWrite the number of pixels in each dimension into long[].- Specified by:
dimensionsin interfaceDimensions- Parameters:
dimensions-
-
dimension
public long dimension(int d) Description copied from interface:IntervalDefault implementation ofDimensions.dimension(int).- Specified by:
dimensionin interfaceDimensions- Specified by:
dimensionin interfaceInterval- Parameters:
d-
-
min
-
min
-
min
Description copied from interface:IntervalSets aPositionableto the minimum of thisInterval -
max
-
max
-
max
Description copied from interface:IntervalSets aPositionableto the maximum of thisInterval
-