Convenience factory methods for creation of {@link ArrayImg} instances withthe most common pixel {@link Type} variants. The collection includesfactories to re-use existing primitive type arrays as data. This can be used for in-place access to data from other libraries such as AWT or ImageJ. Keep in mind that this cannot be a 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 ArrayImgFactory#create(long[],net.imglib2.type.NativeType)}, e.g.
img = new ArrayImgFactory< MyType >.create( new long[] { 100, 200 }, new MyType() );
@author Stephan Saalfeld