Package | Description |
---|---|
net.imglib2.view |
Modifier and Type | Method and Description |
---|---|
static <T> MixedTransformView<T> |
Views.addDimension(RandomAccessible<T> randomAccessible)
Create view which adds a dimension to the source
RandomAccessible
. |
static <T> MixedTransformView<T> |
Views.hyperSlice(RandomAccessible<T> view,
int d,
long pos)
take a (n-1)-dimensional slice of a n-dimensional view, fixing
d-component of coordinates to pos.
|
static <T> MixedTransformView<T> |
Views.invertAxis(RandomAccessible<T> randomAccessible,
int d)
Invert the d-axis.
|
static <T> MixedTransformView<T> |
Views.offset(RandomAccessible<T> randomAccessible,
long... offset)
Deprecated.
Please use
Views.translateInverse(RandomAccessible, long...)
instead. |
static <T> MixedTransformView<T> |
Views.permute(RandomAccessible<T> randomAccessible,
int fromAxis,
int toAxis)
Create view with permuted axes.
|
static <T> MixedTransformView<T> |
Views.rotate(RandomAccessible<T> randomAccessible,
int fromAxis,
int toAxis)
Create view that is rotated by 90 degrees.
|
static <T> MixedTransformView<T> |
Views.translate(RandomAccessible<T> randomAccessible,
long... translation)
Translate the source view by the given translation vector.
|
static <T> MixedTransformView<T> |
Views.translateInverse(RandomAccessible<T> randomAccessible,
long... translation)
Translate the source view by the given inverse translation vector.
|
Copyright © 2015–2022 ImgLib2. All rights reserved.