Uses of Interface
net.imglib2.outofbounds.OutOfBoundsFactory
-
Packages that use OutOfBoundsFactory Package Description net.imglib2.outofbounds net.imglib2.view -
-
Uses of OutOfBoundsFactory in net.imglib2.outofbounds
Classes in net.imglib2.outofbounds that implement OutOfBoundsFactory Modifier and Type Class Description class
OutOfBoundsBorderFactory<T,F extends Interval & RandomAccessible<T>>
Strategy to repeat the boundary pixels (createsOutOfBoundsBorder
).class
OutOfBoundsConstantValueFactory<T extends Type<T>,F extends Interval & RandomAccessible<T>>
class
OutOfBoundsMirrorExpWindowingFactory<T extends NumericType<T>,F extends Interval & RandomAccessible<T>>
TODOclass
OutOfBoundsMirrorFactory<T,F extends Interval & RandomAccessible<T>>
Create appropriate strategies that virtually mirror aRandomAccessible
at its boundaries.class
OutOfBoundsPeriodicFactory<T,F extends Interval & RandomAccessible<T>>
Create appropriate strategies that virtually extend aRandomAccessibleInterval
periodically.class
OutOfBoundsRandomValueFactory<T extends RealType<T>,F extends Interval & RandomAccessible<T>>
-
Uses of OutOfBoundsFactory in net.imglib2.view
Fields in net.imglib2.view declared as OutOfBoundsFactory Modifier and Type Field Description protected OutOfBoundsFactory<T,? super F>
ExtendedRandomAccessibleInterval. factory
Methods in net.imglib2.view that return OutOfBoundsFactory Modifier and Type Method Description OutOfBoundsFactory<T,? super F>
ExtendedRandomAccessibleInterval. getOutOfBoundsFactory()
Methods in net.imglib2.view with parameters of type OutOfBoundsFactory Modifier and Type Method Description static <T,F extends RandomAccessibleInterval<T>>
IntervalView<T>Views. expand(F source, OutOfBoundsFactory<T,? super F> oob, long... border)
Expand a RandomAccessibleInterval as specified by border.static <T,F extends RandomAccessibleInterval<T>>
ExtendedRandomAccessibleInterval<T,F>Views. extend(F source, OutOfBoundsFactory<T,? super F> factory)
Extend a RandomAccessibleInterval with an out-of-bounds strategy.Constructors in net.imglib2.view with parameters of type OutOfBoundsFactory Constructor Description ExtendedRandomAccessibleInterval(F source, OutOfBoundsFactory<T,? super F> factory)
-