public interface JHDFService
extends loci.common.services.Service
| Modifier and Type | Method and Description | 
|---|---|
void | 
close()
Closes and resets the service. 
 | 
void | 
createGroup(String path)
Writes an array as sub-slice into an existing HDF5 dataset 
 | 
boolean | 
exists(String path)
Checks if path in HDF5 file exists. 
 | 
int | 
getElementSize(String path)
Retrieves the Element Size of a dataset in Byte. 
 | 
String | 
getFile()
Retrieves the current initialized file path. 
 | 
List<String> | 
getMember(String path)
Retrieves the all members of a group. 
 | 
int[] | 
getShape(String path)
Retrieves the shape of a dataset. 
 | 
void | 
initIntArray(String path,
            long[] dimensions,
            long bpp)
Creates an HDF5 dataset in path consisting of integers specified 
 by bytes per pixel bpp. 
 | 
ch.systemsx.cisd.base.mdarray.MDByteArray | 
readByteArray(String path)
Reads a multi-dimensional byte array from path. 
 | 
ch.systemsx.cisd.base.mdarray.MDByteArray | 
readByteBlockArray(String path,
                  int[] offset,
                  int[] size)
Reads a multi-dimensional sub-block byte array from path. 
 | 
ch.systemsx.cisd.hdf5.HDF5CompoundDataMap[] | 
readCompoundArrayDataMap(String path)
Reads Compound array of any type 
 | 
ch.systemsx.cisd.base.mdarray.MDIntArray | 
readIntArray(String path)
Reads a multi-dimensional int array from path. 
 | 
ch.systemsx.cisd.base.mdarray.MDIntArray | 
readIntBlockArray(String path,
                 int[] offset,
                 int[] size)
Reads a multi-dimensional sub-block int array from path. 
 | 
ch.systemsx.cisd.base.mdarray.MDShortArray | 
readShortBlockArray(String path,
                   int[] offset,
                   int[] size)
Reads a multi-dimensional sub-block short array from path. 
 | 
String[] | 
readStringArray(String path)
Reads String array array from path. 
 | 
void | 
setFile(String file)
Initializes the service on a given file path. 
 | 
void | 
setFileForWrite(String file)
Initializes the service on a given file path. 
 | 
void | 
writeArraySlice(String path,
               ch.systemsx.cisd.base.mdarray.MDByteArray image,
               long[] offset)
Writes an array as sub-slice into an existing HDF5 dataset 
 | 
void | 
writeArraySlice(String path,
               ch.systemsx.cisd.base.mdarray.MDIntArray image,
               long[] offset)
Writes an array as sub-slice into an existing HDF5 dataset 
 | 
void | 
writeArraySlice(String path,
               ch.systemsx.cisd.base.mdarray.MDShortArray image,
               long[] offset)
Writes an array as sub-slice into an existing HDF5 dataset 
 | 
void setFile(String file) throws IOException
file - Path to initialize the service with.IOException - If there is an error initializing the service with
 file.void setFileForWrite(String file) throws IOException
file - Path to initialize the service with.IOException - If there is an error initializing the service with
 file.String getFile()
null if the service
 has yet to be initialized or is closed.int[] getShape(String path)
path - HDF path to the dataset.List<String> getMember(String path)
path - HDF path to the group.int getElementSize(String path)
path - HDF path to the group.ch.systemsx.cisd.base.mdarray.MDByteArray readByteArray(String path)
path - HDF path to the dataset.ch.systemsx.cisd.base.mdarray.MDIntArray readIntArray(String path)
path - HDF path to the dataset.ch.systemsx.cisd.base.mdarray.MDIntArray readIntBlockArray(String path, int[] offset, int[] size)
path - HDF path to the dataset.offset - Offset of the block to read.size - Output size of the array.ch.systemsx.cisd.base.mdarray.MDByteArray readByteBlockArray(String path, int[] offset, int[] size)
path - HDF path to the dataset.offset - Offset of the block to read.size - Output size of the array.ch.systemsx.cisd.base.mdarray.MDShortArray readShortBlockArray(String path, int[] offset, int[] size)
path - HDF path to the dataset.offset - Offset of the block to read.size - Output size of the array.String[] readStringArray(String path)
path - HDF path to the dataset.ch.systemsx.cisd.hdf5.HDF5CompoundDataMap[] readCompoundArrayDataMap(String path)
path - HDF path to the dataset.boolean exists(String path)
path - path to HDF5 group or dataset.void initIntArray(String path, long[] dimensions, long bpp)
path - path to HDF5 a dataset.bpp - bytes per pixel for the integer data type
 bpp \in {1,2,4} == {Byte, Short, Integer}void writeArraySlice(String path, ch.systemsx.cisd.base.mdarray.MDByteArray image, long[] offset)
path - path to the (existing) HDF5 dataset.image - the data stored as MDArray of pixel type Byteoffset - dimensions, where to start writing the image. The image 
 will be written from offset to offset + image.dimensions()void writeArraySlice(String path, ch.systemsx.cisd.base.mdarray.MDShortArray image, long[] offset)
path - path to the (existing) HDF5 dataset.image - the data stored as MDArray of pixel type Shortoffset - dimensions, where to start writing the image. The image 
 will be written from offset to offset + image.dimensions()void writeArraySlice(String path, ch.systemsx.cisd.base.mdarray.MDIntArray image, long[] offset)
path - path to the (existing) HDF5 dataset.image - the data stored as MDArray of pixel type intoffset - dimensions, where to start writing the image. The image 
 will be written from offset to offset + image.dimensions()void createGroup(String path) throws IOException
path - path of the HDF5 group.IOExceptionvoid close()
    throws IOException
IOException - If there is an error closing the file.Copyright © 2017 Open Microscopy Environment