UNPKG

@itk-wasm/image-io

Version:

Input and output for scientific and medical image file formats.

12 lines (11 loc) 623 B
import { IntTypes, FloatTypes, PixelTypes } from 'itk-wasm'; interface ReadImageFileSeriesOptions { zSpacing?: number; zOrigin?: number; sortedSeries?: boolean; /** Component type, from itk-wasm IntTypes, FloatTypes, for the output pixel components. Defaults to the input component type. */ componentType?: typeof IntTypes[keyof typeof IntTypes] | typeof FloatTypes[keyof typeof FloatTypes]; /** Pixel type, from itk-wasm PixelTypes, for the output pixels. Defaults to the input pixel type. */ pixelType?: typeof PixelTypes[keyof typeof PixelTypes]; } export default ReadImageFileSeriesOptions;