public abstract class AbstractNeighborhoodCursor<T> extends Object implements Cursor<T>, Bounded
Modifier and Type | Field and Description |
---|---|
protected AbstractNeighborhood<T> |
neighborhood |
protected OutOfBounds<T> |
ra |
Constructor and Description |
---|
AbstractNeighborhoodCursor(AbstractNeighborhood<T> neighborhood) |
Modifier and Type | Method and Description |
---|---|
T |
get()
Access the actual T instance providing access to a pixel,
sub-pixel or integral region value the
Sampler points at. |
double |
getDoublePosition(int d)
Return the current position in a given dimension.
|
float |
getFloatPosition(int d)
Return the current position in a given dimension.
|
int |
getIntPosition(int d)
Return the current position in a given dimension.
|
long |
getLongPosition(int d)
Return the current position in a given dimension.
|
boolean |
isOutOfBounds()
True if located out of image bounds.
|
void |
jumpFwd(long steps)
This dummy method just calls
Iterator.fwd() multiple times. |
void |
localize(double[] position)
Write the current position into the passed array.
|
void |
localize(float[] position)
Write the current position into the passed array.
|
void |
localize(int[] position)
Write the current position into the passed array.
|
void |
localize(long[] position)
Write the current position into the passed array.
|
T |
next() |
int |
numDimensions()
Gets the space's number of dimensions.
|
void |
remove() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
copyCursor
forEachRemaining, hasNext
localize, positionAsLongArray, positionAsPoint
localize, positionAsDoubleArray, positionAsRealPoint
protected AbstractNeighborhood<T> neighborhood
protected final OutOfBounds<T> ra
public AbstractNeighborhoodCursor(AbstractNeighborhood<T> neighborhood)
public void localize(float[] position)
RealLocalizable
localize
in interface RealLocalizable
position
- receives current positionpublic void localize(double[] position)
RealLocalizable
localize
in interface RealLocalizable
position
- receives current positionpublic float getFloatPosition(int d)
RealLocalizable
getFloatPosition
in interface Localizable
getFloatPosition
in interface RealLocalizable
d
- dimensionpublic double getDoublePosition(int d)
RealLocalizable
getDoublePosition
in interface Localizable
getDoublePosition
in interface RealLocalizable
d
- dimensionpublic int numDimensions()
EuclideanSpace
numDimensions
in interface EuclideanSpace
public T get()
Sampler
Sampler
points at.public void jumpFwd(long steps)
Iterator.fwd()
multiple times.steps
- number of steps to move forwardpublic void localize(int[] position)
Localizable
localize
in interface Localizable
position
- receives current positionpublic void localize(long[] position)
Localizable
localize
in interface Localizable
position
- receives current positionpublic int getIntPosition(int d)
Localizable
getIntPosition
in interface Localizable
d
- dimensionpublic long getLongPosition(int d)
Localizable
getLongPosition
in interface Localizable
d
- dimensionpublic boolean isOutOfBounds()
Bounded
isOutOfBounds
in interface Bounded
Copyright © 2015–2022 ImgLib2. All rights reserved.