Class PlanarImgs

java.lang.Object
net.imglib2.img.planar.PlanarImgs

public final class PlanarImgs extends Object
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