public final class ConvertedRandomAccess<A,B extends Type<B>> extends AbstractConvertedRandomAccess<A,B>
Modifier and Type | Field and Description |
---|---|
protected B |
converted |
protected Converter<? super A,? super B> |
converter |
source
Constructor and Description |
---|
ConvertedRandomAccess(RandomAccess<A> source,
Converter<? super A,? super B> converter,
B b) |
Modifier and Type | Method and Description |
---|---|
ConvertedRandomAccess<A,B> |
copy() |
B |
get()
Access the actual T instance providing access to a pixel,
sub-pixel or integral region value the
Sampler points at. |
bck, copyRandomAccess, fwd, getDoublePosition, getFloatPosition, getIntPosition, getLongPosition, localize, localize, localize, localize, move, move, move, move, move, numDimensions, setPosition, setPosition, setPosition, setPosition, setPosition
public B get()
Sampler
Sampler
points at.public ConvertedRandomAccess<A,B> copy()
copy
in interface Sampler<B extends Type<B>>
copy
in class AbstractConvertedRandomAccess<A,B extends Type<B>>
Sampler
in the same state accessing the same
values.
It does NOT copy T, just the state of the Sampler
.
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 an
ArrayCursor
for example)Copyright © 2009–2018 ImgLib2. All rights reserved.