itk-wasm
Version:
High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.
17 lines (11 loc) • 387 B
text/typescript
import Image from '../interface-types/image.js'
import WorkerPool from '../worker-pool/worker-pool.js'
interface ReadImageDicomFileSeriesResult {
/** WebWorkerPool used for computation */
webWorkerPool: WorkerPool | null
/** Output image volume */
outputImage: Image
/** Output sorted filenames */
sortedFilenames: Object
}
export default ReadImageDicomFileSeriesResult