Exemplo n.º 1
0
 internal ImageDataTiler(ImageData enclosingInstance, RandomAccess o, long offset, ArrayDesc d)
     : base(o, offset, d.dims, d.type)
 {
     InitBlock(enclosingInstance);
 }
Exemplo n.º 2
0
 private void InitBlock(ImageData enclosingInstance)
 {
     this.enclosingInstance = enclosingInstance;
 }
Exemplo n.º 3
0
 internal ArrayDesc(ImageData enclosingInstance, int[] dims, Type type)
 {
     InitBlock(enclosingInstance);
     this.dims = dims;
     this.type = type;
 }