public final class PlanarImgs extends Object
PlanarImg
instances with
the most common pixel Type
variants. Keep in mind that this cannot be
a complete collection since the number of existing pixel Type
s may be
extended.
For pixel Type
s T not present in this collection, use the generic
PlanarImgFactory.create(long[], net.imglib2.type.NativeType)
, e.g.
img = new PlanarImgFactory< MyType >.create( new long[] { 100, 200 }, new MyType() );
Modifier and Type | Method and Description |
---|---|
static PlanarImg<ARGBType,IntArray> |
argbs(long... dim)
|
static PlanarImg<BitType,LongArray> |
bits(long... dim)
|
static PlanarImg<NativeBoolType,BooleanArray> |
booleans(long... dim)
|
static PlanarImg<ByteType,ByteArray> |
bytes(long... dim)
|
static PlanarImg<ComplexDoubleType,DoubleArray> |
complexDoubles(long... dim)
|
static PlanarImg<ComplexFloatType,FloatArray> |
complexFloats(long... dim)
|
static PlanarImg<DoubleType,DoubleArray> |
doubles(long... dim)
|
static PlanarImg<FloatType,FloatArray> |
floats(long... dim)
|
static PlanarImg<IntType,IntArray> |
ints(long... dim)
|
static PlanarImg<LongType,LongArray> |
longs(long... dim)
|
static PlanarImg<ShortType,ShortArray> |
shorts(long... dim)
|
static PlanarImg<UnsignedByteType,ByteArray> |
unsignedBytes(long... dim)
|
static PlanarImg<UnsignedIntType,IntArray> |
unsignedInts(long... dim)
|
static PlanarImg<UnsignedShortType,ShortArray> |
unsignedShorts(long... dim)
|
public static final PlanarImg<UnsignedByteType,ByteArray> unsignedBytes(long... dim)
public static final PlanarImg<UnsignedShortType,ShortArray> unsignedShorts(long... dim)
public static final PlanarImg<ShortType,ShortArray> shorts(long... dim)
public static final PlanarImg<UnsignedIntType,IntArray> unsignedInts(long... dim)
public static final PlanarImg<NativeBoolType,BooleanArray> booleans(long... dim)
public static final PlanarImg<FloatType,FloatArray> floats(long... dim)
public static final PlanarImg<DoubleType,DoubleArray> doubles(long... dim)
public static final PlanarImg<ComplexFloatType,FloatArray> complexFloats(long... dim)
public static final PlanarImg<ComplexDoubleType,DoubleArray> complexDoubles(long... dim)
Copyright © 2015–2022 ImgLib2. All rights reserved.