Package net.imglib2.img.planar
Class PlanarImgs
java.lang.Object
net.imglib2.img.planar.PlanarImgs
Convenience factory methods for creation of
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 Types may be
extended.
For pixel Types 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() );
- Author:
- Stephan Saalfeld
-
Method Summary
Modifier and TypeMethodDescriptionargbs(long... dim) bits(long... dim) bytes(long... dim) static final PlanarImg<ComplexDoubleType, DoubleArray> complexDoubles(long... dim) static final PlanarImg<ComplexFloatType, FloatArray> complexFloats(long... dim) static final PlanarImg<DoubleType, DoubleArray> doubles(long... dim) static final PlanarImg<FloatType, FloatArray> floats(long... dim) ints(long... dim) longs(long... dim) static final PlanarImg<ShortType, ShortArray> shorts(long... dim) static final PlanarImg<UnsignedByteType, ByteArray> unsignedBytes(long... dim) static final PlanarImg<UnsignedIntType, IntArray> unsignedInts(long... dim) static final PlanarImg<UnsignedShortType, ShortArray> unsignedShorts(long... dim)
-
Method Details
-
unsignedBytes
-
bytes
-
unsignedShorts
-
shorts
-
unsignedInts
-
ints
-
longs
-
bits
-
floats
-
doubles
-
argbs
-
complexFloats
-
complexDoubles
-