Convenience factory methods for creation of {@link PlanarImg} instances withthe most common pixel {@link Type} variants. Keep in mind that this cannot bea complete collection since the number of existing pixel {@link Type}s may be extended. For pixel {@link Type}s T not present in this collection, use the generic {@link PlanarImgFactory#create(long[],net.imglib2.type.NativeType)}, e.g.
img = new PlanarImgFactory< MyType >.create( new long[] { 100, 200 }, new MyType() );
@author Stephan Saalfeld