Modifier and Type | Class and Description |
---|---|
class |
ARGBScreenImage |
class |
ArrayImgAWTScreenImage<T extends NativeType<T>,A>
An
AWTScreenImage that is an ArrayImg . |
class |
ByteAWTScreenImage
A
AWTScreenImage that is an ArrayImg<ByteType, ByteArray> . |
class |
DoubleAWTScreenImage
A
AWTScreenImage that is an ArrayImg<DoubleType, DoubleArray>
. |
class |
FloatAWTScreenImage
A
AWTScreenImage that is an ArrayImg<FloatType, FloatArray> . |
class |
IntAWTScreenImage
A
AWTScreenImage that is an ArrayImg<ShortType, ShortArray> . |
class |
ShortAWTScreenImage
A
AWTScreenImage that is an ArrayImg<ShortType, ShortArray> . |
class |
UnsignedByteAWTScreenImage
A
AWTScreenImage that is an
ArrayImg<UnsignedByteType, ByteArray> . |
class |
UnsignedIntAWTScreenImage
A
AWTScreenImage that is an ArrayImg<ShortType, ShortArray> . |
class |
UnsignedShortAWTScreenImage
A
AWTScreenImage that is an
ArrayImg<UnsignedShortType, ShortArray> . |
Modifier and Type | Class and 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 areas
|
class |
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 areas
|
Constructor and Description |
---|
DiscreteFrequencyDistribution(Img<LongType> img)
Construct an n-dimensional counter using a provided
Img<LongType> to
store counts. |
Modifier and Type | Interface and Description |
---|---|
interface |
NativeImg<T extends Type<T>,A>
TODO
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractImg<T>
TODO
|
class |
AbstractNativeImg<T extends NativeType<T>,A>
TODO
|
class |
ImgView<T extends Type<T>>
Allows a
RandomAccessibleInterval to be treated as an Img . |
Modifier and Type | Method and Description |
---|---|
Img<T> |
ImgView.copy() |
Img<T> |
Img.copy() |
Img<T> |
ImgFactory.create(Dimensions dim,
T type)
The
ImgFactory can decide how to create the Img . |
Img<T> |
ImgFactory.create(int[] dim,
T type)
The
ImgFactory can decide how to create the Img . |
abstract Img<T> |
ImgFactory.create(long[] dim,
T type)
The
ImgFactory can decide how to create the Img . |
Img<T> |
ImgFactory.create(Supplier<T> typeSupplier,
Dimensions dim)
The
ImgFactory can decide how to create the Img . |
Img<T> |
ImgFactory.create(Supplier<T> typeSupplier,
int[] dim)
The
ImgFactory can decide how to create the Img . |
Img<T> |
ImgFactory.create(Supplier<T> typeSupplier,
long... dim)
The
ImgFactory can decide how to create the Img . |
Img<T> |
WrappedImg.getImg() |
static <T extends Type<T>> |
ImgView.wrap(RandomAccessibleInterval<T> accessible,
ImgFactory<T> factory)
Represent an arbitrary RandomAccessibleInterval as an Img
|
Modifier and Type | Class and Description |
---|---|
class |
ArrayImg<T extends NativeType<T>,A>
This
Img stores an image in a single linear array of basic types. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractCellImg<T extends NativeType<T>,A,C extends Cell<A>,I extends RandomAccessible<C> & IterableInterval<C>>
Abstract superclass for
Img types that divide their underlying data
into cells. |
class |
CellImg<T extends NativeType<T>,A> |
class |
LazyCellImg<T extends NativeType<T>,A>
A
AbstractCellImg that obtains its Cells lazily when they are
accessed. |
static class |
LazyCellImg.LazyCells<T> |
Modifier and Type | Method and Description |
---|---|
Img<T> |
LazyCellImg.copy() |
Img<T> |
LazyCellImg.LazyCells.copy() |
Modifier and Type | Class and Description |
---|---|
class |
AbstractListImg<T>
Abstract base class for
Img that store pixels in a single linear
array (an ArrayList or similar).In principle, the number of entities
stored is limited to Integer.MAX_VALUE . |
class |
AbstractLongListImg<T>
Abstract base class for
Img that store pixels in a single linear
list addressed by a long. |
class |
ListImg<T>
|
Modifier and Type | Class and Description |
---|---|
class |
PlanarImg<T extends NativeType<T>,A extends ArrayDataAccess<A>>
A
NativeImg that stores data in an list of primitive arrays, one per
image plane. |
Modifier and Type | Class and Description |
---|---|
class |
NtreeImg<T extends NativeType<T>,A extends NtreeAccess<?,A>> |
Modifier and Type | Method and Description |
---|---|
static <T extends BooleanType<T>> |
ImgUtil.copy(boolean[] src,
int offset,
int[] stride,
Img<T> dest) |
static <T extends RealType<T>> |
ImgUtil.copy(double[] src,
int offset,
int[] stride,
Img<T> dest)
Copy a flat array of doubles into an Img.
|
static <T extends RealType<T>> |
ImgUtil.copy(float[] src,
int offset,
int[] stride,
Img<T> dest) |
static <T extends BooleanType<T>> |
ImgUtil.copy(Img<T> src,
boolean[] dest,
int offset,
int[] stride) |
static <T extends RealType<T>> |
ImgUtil.copy(Img<T> src,
double[] dest,
int offset,
int[] stride)
Copy the contents of an Img to a double array
|
static <T extends RealType<T>> |
ImgUtil.copy(Img<T> src,
float[] dest,
int offset,
int[] stride) |
static <T extends IntegerType<T>> |
ImgUtil.copy(Img<T> src,
int[] dest,
int offset,
int[] stride) |
static <T extends IntegerType<T>> |
ImgUtil.copy(Img<T> src,
long[] dest,
int offset,
int[] stride) |
static <T extends IntegerType<T>> |
ImgUtil.copy(int[] src,
int offset,
int[] stride,
Img<T> dest) |
static <T extends IntegerType<T>> |
ImgUtil.copy(long[] src,
int offset,
int[] stride,
Img<T> dest) |
Copyright © 2009–2017 ImgLib2. All rights reserved.