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