Package | Description |
---|---|
net.imglib2.algorithm.lazy | |
net.imglib2.cache.img | |
net.imglib2.img.io |
Modifier and Type | Method and Description |
---|---|
static <T extends NativeType<T>> |
Lazy.generate(Interval targetInterval,
int[] blockSize,
T type,
Set<AccessFlags> accessFlags,
Consumer<RandomAccessibleInterval<T>> op)
Create a memory
CachedCellImg with a cell generator
Consumer . |
Modifier and Type | Class and Description |
---|---|
class |
DiskCachedCellImg<T extends NativeType<T>,A>
A
LazyCellImg that creates empty Cells lazily when they are accessed
and stores (modified) Cells in a disk cache when memory runs full. |
Modifier and Type | Method and Description |
---|---|
<T extends NativeType<T>> |
ReadOnlyCachedCellImgFactory.create(long[] dim,
T type,
CellLoader<T> loader) |
<T extends NativeType<T>> |
ReadOnlyCachedCellImgFactory.create(long[] dim,
T type,
CellLoader<T> loader,
ReadOnlyCachedCellImgOptions additionalOptions) |
<T extends NativeType<T>,A> |
ReadOnlyCachedCellImgFactory.createWithCacheLoader(long[] dim,
T type,
CacheLoader<Long,Cell<A>> backingLoader) |
<T extends NativeType<T>,A> |
ReadOnlyCachedCellImgFactory.createWithCacheLoader(long[] dim,
T type,
CacheLoader<Long,Cell<A>> backingLoader,
ReadOnlyCachedCellImgOptions additionalOptions) |
Modifier and Type | Method and Description |
---|---|
static <T extends NumericType<T> & NativeType<T>,A extends ArrayDataAccess<A>> |
Load.lazyStack(List<String> paths,
CacheLoader<String,Img<T>> loader)
Return a
CachedCellImg representation of the ordered list of file paths,
with each file path pointing to an image that can be loaded with the CacheLoader . |
Copyright © 2015–2022 ImgLib2. All rights reserved.