Uses of Interface
net.imglib2.img.Img
-
-
Uses of Img in net.imglib2.display.screenimage.awt
Classes in net.imglib2.display.screenimage.awt that implement Img 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 Img in net.imglib2.histogram
Classes in net.imglib2.histogram that implement Img Modifier and Type Class Description class
DiscreteFrequencyDistribution
This class represents an n-dimensional set of counters.class
Histogram1d<T>
A Histogram1d is a histogram that tracks up to four kinds of values: 1) values in the center of the distribution 2) values to the left of the center of the distribution (lower tail) 3) values to the right of the center of the distribution (upper tail) 4) values outside the other areasclass
HistogramNd<T>
A HistogramNd is an n-dimensional histogram that tracks up to four kinds of values: 1) values in the center of the distribution 2) values to the left of the center of the distribution (lower tail) 3) values to the right of the center of the distribution (upper tail) 4) values outside the other areasConstructors in net.imglib2.histogram with parameters of type Img Constructor Description DiscreteFrequencyDistribution(Img<LongType> img)
Construct an n-dimensional counter using a providedImg<LongType>
to store counts. -
Uses of Img in net.imglib2.img
Subinterfaces of Img in net.imglib2.img Modifier and Type Interface Description interface
NativeImg<T extends Type<T>,A>
TODOClasses in net.imglib2.img that implement Img Modifier and Type Class Description class
AbstractImg<T>
TODOclass
AbstractNativeImg<T extends NativeType<T>,A>
TODOclass
ImgView<T extends Type<T>>
Allows aRandomAccessibleInterval
to be treated as anImg
.Methods in net.imglib2.img that return Img Modifier and Type Method Description Img<T>
Img. copy()
Img<T>
ImgView. copy()
Img<T>
ImgFactory. create(int[] dim, T type)
TheImgFactory
can decide how to create theImg
.abstract Img<T>
ImgFactory. create(long[] dim, T type)
TheImgFactory
can decide how to create theImg
.Img<T>
ImgFactory. create(java.util.function.Supplier<T> typeSupplier, int[] dim)
TheImgFactory
can decide how to create theImg
.Img<T>
ImgFactory. create(java.util.function.Supplier<T> typeSupplier, long... dim)
TheImgFactory
can decide how to create theImg
.Img<T>
ImgFactory. create(java.util.function.Supplier<T> typeSupplier, Dimensions dim)
TheImgFactory
can decide how to create theImg
.Img<T>
ImgFactory. create(Dimensions dim, T type)
TheImgFactory
can decide how to create theImg
.Img<T>
WrappedImg. getImg()
static <T extends Type<T>>
Img<T>ImgView. wrap(RandomAccessibleInterval<T> accessible, ImgFactory<T> factory)
Represent an arbitrary RandomAccessibleInterval as an Img -
Uses of Img in net.imglib2.img.array
Classes in net.imglib2.img.array that implement Img 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 Img in net.imglib2.img.cell
Classes in net.imglib2.img.cell that implement Img 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>
Methods in net.imglib2.img.cell that return Img Modifier and Type Method Description Img<T>
LazyCellImg. copy()
Img<T>
LazyCellImg.LazyCells. copy()
-
Uses of Img in net.imglib2.img.list
Classes in net.imglib2.img.list that implement Img 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 Img in net.imglib2.img.planar
Classes in net.imglib2.img.planar that implement Img 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 Img in net.imglib2.img.sparse
Classes in net.imglib2.img.sparse that implement Img Modifier and Type Class Description class
NtreeImg<T extends NativeType<T>,A extends NtreeAccess<?,A>>
-
Uses of Img in net.imglib2.util
Methods in net.imglib2.util with parameters of type Img Modifier and Type Method Description static <T extends BooleanType<T>>
voidImgUtil. copy(boolean[] src, int offset, int[] stride, Img<T> dest)
static <T extends RealType<T>>
voidImgUtil. copy(double[] src, int offset, int[] stride, Img<T> dest)
Copy a flat array of doubles into an Img.static <T extends RealType<T>>
voidImgUtil. copy(float[] src, int offset, int[] stride, Img<T> dest)
static <T extends IntegerType<T>>
voidImgUtil. copy(int[] src, int offset, int[] stride, Img<T> dest)
static <T extends IntegerType<T>>
voidImgUtil. copy(long[] src, int offset, int[] stride, Img<T> dest)
static <T extends BooleanType<T>>
voidImgUtil. copy(Img<T> src, boolean[] dest, int offset, int[] stride)
static <T extends RealType<T>>
voidImgUtil. copy(Img<T> src, double[] dest, int offset, int[] stride)
Copy the contents of an Img to a double arraystatic <T extends RealType<T>>
voidImgUtil. copy(Img<T> src, float[] dest, int offset, int[] stride)
static <T extends IntegerType<T>>
voidImgUtil. copy(Img<T> src, int[] dest, int offset, int[] stride)
static <T extends IntegerType<T>>
voidImgUtil. copy(Img<T> src, long[] dest, int offset, int[] stride)
-