itk-wasm
Version:
High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.
12 lines (11 loc) • 400 B
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;