@itk-wasm/image-io
Version:
Input and output for scientific and medical image file formats.
13 lines (12 loc) • 601 B
TypeScript
import Hdf5ReadImageNodeOptions from './hdf5-read-image-node-options.js';
import Hdf5ReadImageNodeResult from './hdf5-read-image-node-result.js';
/**
* Read an image file format and convert it to the itk-wasm file format
*
* @param {string} serializedImage - Input image serialized in the file format
* @param {Hdf5ReadImageNodeOptions} options - options object
*
* @returns {Promise<Hdf5ReadImageNodeResult>} - result object
*/
declare function hdf5ReadImageNode(serializedImage: string, options?: Hdf5ReadImageNodeOptions): Promise<Hdf5ReadImageNodeResult>;
export default hdf5ReadImageNode;