Package net.imglib2.view
Interface TransformedRandomAccessible<T>
-
- All Superinterfaces:
EuclideanSpace,RandomAccessible<T>,View
- All Known Implementing Classes:
MixedTransformView,TransformView
public interface TransformedRandomAccessible<T> extends RandomAccessible<T>, View
A view of a RandomAccessible which is related by a coordinateTransformto its source.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RandomAccessible<T>getSource()Get the source of the TransformedRandomAccessible.TransformgetTransformToSource()Get the transformation from view coordinates intosourcecoordinates.-
Methods inherited from interface net.imglib2.EuclideanSpace
numDimensions
-
Methods inherited from interface net.imglib2.RandomAccessible
getAt, getAt, getAt, randomAccess, randomAccess
-
-
-
-
Method Detail
-
getSource
RandomAccessible<T> getSource()
Get the source of the TransformedRandomAccessible. This is the next element in the view hierarchy, for example, the next ExtendedRandomAccessibleInterval or the underlying Img.- Returns:
- the source
RandomAccessible.
-
-