Uses of Interface
net.imglib2.img.NativeImg
-
-
Uses of NativeImg in net.imglib2.display.screenimage.awt
Classes in net.imglib2.display.screenimage.awt that implement NativeImg 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 NativeImg in net.imglib2.img
Classes in net.imglib2.img that implement NativeImg Modifier and Type Class Description class
AbstractNativeImg<T extends NativeType<T>,A>
TODOMethods in net.imglib2.img that return NativeImg Modifier and Type Method Description NativeImg<T,?>
NativeImgFactory. create(long[] dim, T type)
abstract NativeImg<T,? extends ByteAccess>
NativeImgFactory. createByteInstance(long[] dimensions, Fraction entitiesPerPixel)
abstract NativeImg<T,? extends CharAccess>
NativeImgFactory. createCharInstance(long[] dimensions, Fraction entitiesPerPixel)
abstract NativeImg<T,? extends DoubleAccess>
NativeImgFactory. createDoubleInstance(long[] dimensions, Fraction entitiesPerPixel)
abstract NativeImg<T,? extends FloatAccess>
NativeImgFactory. createFloatInstance(long[] dimensions, Fraction entitiesPerPixel)
abstract NativeImg<T,? extends IntAccess>
NativeImgFactory. createIntInstance(long[] dimensions, Fraction entitiesPerPixel)
abstract NativeImg<T,? extends LongAccess>
NativeImgFactory. createLongInstance(long[] dimensions, Fraction entitiesPerPixel)
abstract NativeImg<T,? extends ShortAccess>
NativeImgFactory. createShortInstance(long[] dimensions, Fraction entitiesPerPixel)
-
Uses of NativeImg in net.imglib2.img.array
Classes in net.imglib2.img.array that implement NativeImg 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 NativeImg in net.imglib2.img.cell
Classes in net.imglib2.img.cell that implement NativeImg 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.Methods in net.imglib2.img.cell with parameters of type NativeImg Modifier and Type Method Description static void
LazyCellImg. linkType(NativeType t, NativeImg img)
Reflection hack because there is noT NativeType <T>.create(NativeImg<?, A>)
method in ImgLib2 Note that for this method to be introduced, NativeType would need an additional generic parameter A that specifies the accepted family of access objects that can be used in the NativeImg... -
Uses of NativeImg in net.imglib2.img.planar
Classes in net.imglib2.img.planar that implement NativeImg 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.Methods in net.imglib2.img.planar that return NativeImg Modifier and Type Method Description NativeImg<T,ByteArray>
PlanarImgFactory. createByteInstance(long[] dimensions, Fraction entitiesPerPixel)
NativeImg<T,CharArray>
PlanarImgFactory. createCharInstance(long[] dimensions, Fraction entitiesPerPixel)
NativeImg<T,DoubleArray>
PlanarImgFactory. createDoubleInstance(long[] dimensions, Fraction entitiesPerPixel)
NativeImg<T,FloatArray>
PlanarImgFactory. createFloatInstance(long[] dimensions, Fraction entitiesPerPixel)
NativeImg<T,IntArray>
PlanarImgFactory. createIntInstance(long[] dimensions, Fraction entitiesPerPixel)
NativeImg<T,LongArray>
PlanarImgFactory. createLongInstance(long[] dimensions, Fraction entitiesPerPixel)
NativeImg<T,ShortArray>
PlanarImgFactory. createShortInstance(long[] dimensions, Fraction entitiesPerPixel)
-
Uses of NativeImg in net.imglib2.img.sparse
Classes in net.imglib2.img.sparse that implement NativeImg Modifier and Type Class Description class
NtreeImg<T extends NativeType<T>,A extends NtreeAccess<?,A>>
-
Uses of NativeImg in net.imglib2.type
Fields in net.imglib2.type declared as NativeImg Modifier and Type Field Description protected NativeImg<?,? extends LongAccess>
AbstractBitType. img
Methods in net.imglib2.type that return NativeImg Modifier and Type Method Description NativeImg<T,?>
NativeType. createSuitableNativeImg(NativeImgFactory<T> storageFactory, long[] dim)
TheNativeType
creates theNativeImg
used for storing image data; based on the given storage strategy and its size.Constructors in net.imglib2.type with parameters of type NativeImg Constructor Description AbstractBit64Type(NativeImg<?,? extends LongAccess> bitStorage, int nBits)
AbstractBitType(NativeImg<?,? extends LongAccess> bitStorage, int nBits)
-
Uses of NativeImg in net.imglib2.type.label
Fields in net.imglib2.type.label declared as NativeImg Modifier and Type Field Description protected NativeImg<?,? extends CharAccess>
BasePairCharType. img
Methods in net.imglib2.type.label that return NativeImg Modifier and Type Method Description NativeImg<BasePairBitType,? extends LongAccess>
BasePairBitType. createSuitableNativeImg(NativeImgFactory<BasePairBitType> storageFactory, long[] dim)
NativeImg<BasePairCharType,? extends CharAccess>
BasePairCharType. createSuitableNativeImg(NativeImgFactory<BasePairCharType> storageFactory, long[] dim)
Constructors in net.imglib2.type.label with parameters of type NativeImg Constructor Description BasePairBitType(NativeImg<?,? extends LongAccess> bitStorage)
BasePairCharType(NativeImg<?,? extends CharAccess> charStorage)
-
Uses of NativeImg in net.imglib2.type.logic
Fields in net.imglib2.type.logic declared as NativeImg Modifier and Type Field Description protected NativeImg<?,? extends LongAccess>
BitType. img
Methods in net.imglib2.type.logic that return NativeImg Modifier and Type Method Description NativeImg<BitType,? extends LongAccess>
BitType. createSuitableNativeImg(NativeImgFactory<BitType> storageFactory, long[] dim)
Constructors in net.imglib2.type.logic with parameters of type NativeImg Constructor Description BitType(NativeImg<?,? extends LongAccess> bitStorage)
-
Uses of NativeImg in net.imglib2.type.numeric
Fields in net.imglib2.type.numeric declared as NativeImg Modifier and Type Field Description protected NativeImg<?,? extends IntAccess>
ARGBType. img
protected NativeImg<?,? extends DoubleAccess>
NativeARGBDoubleType. img
Methods in net.imglib2.type.numeric that return NativeImg Modifier and Type Method Description NativeImg<ARGBType,? extends IntAccess>
ARGBType. createSuitableNativeImg(NativeImgFactory<ARGBType> storageFactory, long[] dim)
NativeImg<NativeARGBDoubleType,? extends DoubleAccess>
NativeARGBDoubleType. createSuitableNativeImg(NativeImgFactory<NativeARGBDoubleType> storageFactory, long[] dim)
Constructors in net.imglib2.type.numeric with parameters of type NativeImg Constructor Description ARGBType(NativeImg<?,? extends IntAccess> intStorage)
NativeARGBDoubleType(NativeImg<?,? extends DoubleAccess> img)
-
Uses of NativeImg in net.imglib2.type.numeric.complex
Fields in net.imglib2.type.numeric.complex declared as NativeImg Modifier and Type Field Description protected NativeImg<?,? extends DoubleAccess>
ComplexDoubleType. img
protected NativeImg<?,? extends FloatAccess>
ComplexFloatType. img
Methods in net.imglib2.type.numeric.complex that return NativeImg Modifier and Type Method Description NativeImg<ComplexDoubleType,? extends DoubleAccess>
ComplexDoubleType. createSuitableNativeImg(NativeImgFactory<ComplexDoubleType> storageFactory, long[] dim)
NativeImg<ComplexFloatType,? extends FloatAccess>
ComplexFloatType. createSuitableNativeImg(NativeImgFactory<ComplexFloatType> storageFactory, long[] dim)
Constructors in net.imglib2.type.numeric.complex with parameters of type NativeImg Constructor Description ComplexDoubleType(NativeImg<?,? extends DoubleAccess> complexfloatStorage)
ComplexFloatType(NativeImg<?,? extends FloatAccess> complexfloatStorage)
-
Uses of NativeImg in net.imglib2.type.numeric.integer
Fields in net.imglib2.type.numeric.integer declared as NativeImg Modifier and Type Field Description protected NativeImg<?,? extends ByteAccess>
GenericByteType. img
protected NativeImg<?,? extends IntAccess>
GenericIntType. img
protected NativeImg<?,? extends LongAccess>
GenericLongType. img
protected NativeImg<?,? extends ShortAccess>
GenericShortType. img
protected NativeImg<?,? extends LongAccess>
Unsigned128BitType. img
-
Uses of NativeImg in net.imglib2.type.numeric.real
Fields in net.imglib2.type.numeric.real declared as NativeImg Modifier and Type Field Description protected NativeImg<?,? extends DoubleAccess>
DoubleType. img
protected NativeImg<?,? extends FloatAccess>
FloatType. img
Methods in net.imglib2.type.numeric.real that return NativeImg Modifier and Type Method Description NativeImg<DoubleType,? extends DoubleAccess>
DoubleType. createSuitableNativeImg(NativeImgFactory<DoubleType> storageFactory, long[] dim)
NativeImg<FloatType,? extends FloatAccess>
FloatType. createSuitableNativeImg(NativeImgFactory<FloatType> storageFactory, long[] dim)
Constructors in net.imglib2.type.numeric.real with parameters of type NativeImg Constructor Description DoubleType(NativeImg<?,? extends DoubleAccess> doubleStorage)
FloatType(NativeImg<?,? extends FloatAccess> floatStorage)
-