Uses of Class
net.imglib2.view.StackView.StackAccessMode
-
Packages that use StackView.StackAccessMode Package Description net.imglib2.view -
-
Uses of StackView.StackAccessMode in net.imglib2.view
Methods in net.imglib2.view that return StackView.StackAccessMode Modifier and Type Method Description StackView.StackAccessMode
StackView. getStackAccessMode()
static StackView.StackAccessMode
StackView.StackAccessMode. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StackView.StackAccessMode[]
StackView.StackAccessMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in net.imglib2.view with parameters of type StackView.StackAccessMode Modifier and Type Method Description static <T> RandomAccessibleInterval<T>
Views. concatenate(int concatenationAxis, StackView.StackAccessMode mode, java.util.List<? extends RandomAccessibleInterval<T>> sources)
Concatenate a list ofRandomAccessibleInterval
along the providedconcatenationAxis
.static <T> RandomAccessibleInterval<T>
Views. concatenate(int concatenationAxis, StackView.StackAccessMode mode, RandomAccessibleInterval<T>... sources)
Concatenate an array ofRandomAccessibleInterval
along the providedconcatenationAxis
.static <T> RandomAccessibleInterval<T>
Views. stack(StackView.StackAccessMode stackAccessMode, java.util.List<? extends RandomAccessibleInterval<T>> hyperslices)
Form a (n+1)-dimensionalRandomAccessibleInterval
by stacking n-dimensionalRandomAccessibleInterval
s.static <T> RandomAccessibleInterval<T>
Views. stack(StackView.StackAccessMode stackAccessMode, RandomAccessibleInterval<T>... hyperslices)
Form a (n+1)-dimensionalRandomAccessibleInterval
by stacking n-dimensionalRandomAccessibleInterval
s.Constructors in net.imglib2.view with parameters of type StackView.StackAccessMode Constructor Description StackView(java.util.List<? extends RandomAccessibleInterval<T>> hyperslices, StackView.StackAccessMode stackAccessMode)
-