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