Package net.imglib2.iterator
Class OffsetableIntervalIterator
- java.lang.Object
-
- net.imglib2.AbstractEuclideanSpace
-
- net.imglib2.AbstractInterval
-
- net.imglib2.iterator.IntervalIterator
-
- net.imglib2.iterator.OffsetableIntervalIterator
-
- All Implemented Interfaces:
Dimensions,EuclideanSpace,Interval,Iterator,Localizable,RealInterval,RealLocalizable
public class OffsetableIntervalIterator extends IntervalIterator
AIntervalIteratorthat has an adjustable offset
-
-
Field Summary
-
Fields inherited from class net.imglib2.iterator.IntervalIterator
dimensions, index, lastIndex, steps
-
Fields inherited from class net.imglib2.AbstractInterval
max, min
-
Fields inherited from class net.imglib2.AbstractEuclideanSpace
n
-
-
Constructor Summary
Constructors Constructor Description OffsetableIntervalIterator(int[] dimensions)OffsetableIntervalIterator(int[] min, int[] max)OffsetableIntervalIterator(long[] dimensions)OffsetableIntervalIterator(long[] min, long[] max)OffsetableIntervalIterator(Interval interval)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidsetMin(int[] min)Adjust the offset and reset the iteratorvoidsetMin(long[] min)Adjust the offset and reset the iterator-
Methods inherited from class net.imglib2.iterator.IntervalIterator
create, dimension, dimensions, fwd, getDoublePosition, getFloatPosition, getIndex, getIntPosition, getLongPosition, hasNext, jumpFwd, localize, localize, localize, localize, reset, toString
-
Methods inherited from class net.imglib2.AbstractInterval
max, max, max, min, min, min, realMax, realMax, realMax, realMin, realMin, realMin
-
Methods inherited from class net.imglib2.AbstractEuclideanSpace
numDimensions
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface net.imglib2.Dimensions
dimensions, dimensionsAsLongArray, dimensionsAsPoint
-
Methods inherited from interface net.imglib2.EuclideanSpace
numDimensions
-
Methods inherited from interface net.imglib2.Interval
maxAsLongArray, maxAsPoint, minAsLongArray, minAsPoint
-
Methods inherited from interface net.imglib2.Localizable
localize, localize, positionAsLongArray, positionAsPoint
-
Methods inherited from interface net.imglib2.RealInterval
maxAsDoubleArray, maxAsRealPoint, minAsDoubleArray, minAsRealPoint
-
Methods inherited from interface net.imglib2.RealLocalizable
positionAsDoubleArray, positionAsRealPoint
-
-
-
-
Constructor Detail
-
OffsetableIntervalIterator
public OffsetableIntervalIterator(long[] dimensions)
-
OffsetableIntervalIterator
public OffsetableIntervalIterator(int[] dimensions)
-
OffsetableIntervalIterator
public OffsetableIntervalIterator(long[] min, long[] max)
-
OffsetableIntervalIterator
public OffsetableIntervalIterator(int[] min, int[] max)
-
OffsetableIntervalIterator
public OffsetableIntervalIterator(Interval interval)
-
-