@itk-wasm/image-io
Version:
Input and output for scientific and medical image file formats.
13 lines (12 loc) • 591 B
TypeScript
import Ge5ReadImageNodeOptions from './ge5-read-image-node-options.js';
import Ge5ReadImageNodeResult from './ge5-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 {Ge5ReadImageNodeOptions} options - options object
*
* @returns {Promise<Ge5ReadImageNodeResult>} - result object
*/
declare function ge5ReadImageNode(serializedImage: string, options?: Ge5ReadImageNodeOptions): Promise<Ge5ReadImageNodeResult>;
export default ge5ReadImageNode;