Package net.imglib2.util
Class Localizables.LocationRandomAccess
- java.lang.Object
-
- net.imglib2.AbstractEuclideanSpace
-
- net.imglib2.AbstractLocalizable
-
- net.imglib2.Point
-
- net.imglib2.util.Localizables.LocationRandomAccess
-
- All Implemented Interfaces:
EuclideanSpace,Localizable,Positionable,RandomAccess<Localizable>,RealLocalizable,Sampler<Localizable>,Typed<Localizable>
- Enclosing class:
- Localizables
private static class Localizables.LocationRandomAccess extends Point implements RandomAccess<Localizable>
A RandomAccess that returns its current position as value.
-
-
Field Summary
-
Fields inherited from class net.imglib2.AbstractLocalizable
position
-
Fields inherited from class net.imglib2.AbstractEuclideanSpace
n
-
-
Constructor Summary
Constructors Constructor Description LocationRandomAccess(int n)LocationRandomAccess(Localizable initialPosition)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RandomAccess<Localizable>copy()Localizableget()Access the actual T instance providing access to a pixel, sub-pixel or integral region value theSamplerpoints at.LocalizablegetType()Get an instance ofT.-
Methods inherited from class net.imglib2.Point
bck, equals, fwd, hashCode, move, move, move, move, move, setPosition, setPosition, setPosition, setPosition, setPosition, toString, wrap
-
Methods inherited from class net.imglib2.AbstractLocalizable
getDoublePosition, getFloatPosition, getIntPosition, getLongPosition, localize, localize, localize, localize
-
Methods inherited from class net.imglib2.AbstractEuclideanSpace
numDimensions
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface net.imglib2.EuclideanSpace
numDimensions
-
Methods inherited from interface net.imglib2.Localizable
getDoublePosition, getFloatPosition, getIntPosition, getLongPosition, localize, localize, localize, localize, positionAsLongArray, positionAsPoint
-
Methods inherited from interface net.imglib2.Positionable
bck, fwd, move, move, move, move, move, setPosition, setPosition, setPosition, setPosition, setPosition
-
Methods inherited from interface net.imglib2.RandomAccess
copyRandomAccess, setPositionAndGet, setPositionAndGet, setPositionAndGet
-
Methods inherited from interface net.imglib2.RealLocalizable
localize, localize, positionAsDoubleArray, positionAsRealPoint
-
-
-
-
Constructor Detail
-
LocationRandomAccess
public LocationRandomAccess(int n)
-
LocationRandomAccess
public LocationRandomAccess(Localizable initialPosition)
-
-
Method Detail
-
get
public Localizable get()
Description copied from interface:SamplerAccess the actual T instance providing access to a pixel, sub-pixel or integral region value theSamplerpoints at.- Specified by:
getin interfaceSampler<Localizable>
-
getType
public Localizable getType()
Description copied from interface:TypedGet an instance ofT.It should not be assumed that the returned
Tinstance is an independent copy. In particular, repeated calls togetType()may return the same instance.- Specified by:
getTypein interfaceSampler<Localizable>- Specified by:
getTypein interfaceTyped<Localizable>- Returns:
- an instance of
T
-
copy
public RandomAccess<Localizable> copy()
- Specified by:
copyin interfaceRandomAccess<Localizable>- Specified by:
copyin interfaceSampler<Localizable>- Returns:
- - A new
Samplerin the same state accessing the same values. It does NOT copy T, just the state of theSampler. Otherwise use T.copy() if available. Sampler.copy().get() == Sampler.get(), i.e. both hold the same value, not necessarily the same instance (this is the case for anArrayCursorfor example)
-
-