Uses of Class
net.imglib2.img.AbstractImg
-
Packages that use AbstractImg Package Description net.imglib2.display.screenimage.awt net.imglib2.img net.imglib2.img.array net.imglib2.img.cell net.imglib2.img.list net.imglib2.img.planar net.imglib2.img.sparse -
-
Uses of AbstractImg in net.imglib2.display.screenimage.awt
Subclasses of AbstractImg in net.imglib2.display.screenimage.awt Modifier and Type Class Description class
ARGBScreenImage
class
ArrayImgAWTScreenImage<T extends NativeType<T>,A>
AnAWTScreenImage
that is anArrayImg
.class
ByteAWTScreenImage
AAWTScreenImage
that is anArrayImg<ByteType, ByteArray>
.class
DoubleAWTScreenImage
AAWTScreenImage
that is anArrayImg<DoubleType, DoubleArray>
.class
FloatAWTScreenImage
AAWTScreenImage
that is anArrayImg<FloatType, FloatArray>
.class
IntAWTScreenImage
AAWTScreenImage
that is anArrayImg<ShortType, ShortArray>
.class
ShortAWTScreenImage
AAWTScreenImage
that is anArrayImg<ShortType, ShortArray>
.class
UnsignedByteAWTScreenImage
AAWTScreenImage
that is anArrayImg<UnsignedByteType, ByteArray>
.class
UnsignedIntAWTScreenImage
AAWTScreenImage
that is anArrayImg<ShortType, ShortArray>
.class
UnsignedShortAWTScreenImage
AAWTScreenImage
that is anArrayImg<UnsignedShortType, ShortArray>
. -
Uses of AbstractImg in net.imglib2.img
Subclasses of AbstractImg in net.imglib2.img Modifier and Type Class Description class
AbstractNativeImg<T extends NativeType<T>,A>
TODO -
Uses of AbstractImg in net.imglib2.img.array
Subclasses of AbstractImg in net.imglib2.img.array Modifier and Type Class Description class
ArrayImg<T extends NativeType<T>,A>
ThisImg
stores an image in a single linear array of basic types. -
Uses of AbstractImg in net.imglib2.img.cell
Subclasses of AbstractImg in net.imglib2.img.cell Modifier and Type Class Description class
AbstractCellImg<T extends NativeType<T>,A,C extends Cell<A>,I extends RandomAccessible<C> & IterableInterval<C>>
Abstract superclass forImg
types that divide their underlying data into cells.class
CellImg<T extends NativeType<T>,A>
class
LazyCellImg<T extends NativeType<T>,A>
AAbstractCellImg
that obtains its Cells lazily when they are accessed.static class
LazyCellImg.LazyCells<T>
-
Uses of AbstractImg in net.imglib2.img.list
Subclasses of AbstractImg in net.imglib2.img.list Modifier and Type Class Description class
AbstractListImg<T>
Abstract base class forImg
that store pixels in a single linear array (anArrayList
or similar).In principle, the number of entities stored is limited toInteger.MAX_VALUE
.class
AbstractLongListImg<T>
Abstract base class forImg
that store pixels in a single linear list addressed by a long.class
ListImg<T>
ThisImg
stores an image in a single linearArrayList
. -
Uses of AbstractImg in net.imglib2.img.planar
Subclasses of AbstractImg in net.imglib2.img.planar Modifier and Type Class Description class
PlanarImg<T extends NativeType<T>,A extends ArrayDataAccess<A>>
ANativeImg
that stores data in an list of primitive arrays, one per image plane. -
Uses of AbstractImg in net.imglib2.img.sparse
Subclasses of AbstractImg in net.imglib2.img.sparse Modifier and Type Class Description class
NtreeImg<T extends NativeType<T>,A extends NtreeAccess<?,A>>
-