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