UNPKG

@itk-wasm/image-io

Version:

Input and output for scientific and medical image file formats.

9 lines (8 loc) 337 B
import { JsonCompatible, Image, WorkerPoolFunctionResult } from 'itk-wasm'; interface GiplReadImageResult extends WorkerPoolFunctionResult { /** Whether the input could be read. If false, the output image is not valid. */ couldRead: JsonCompatible; /** Output image */ image: Image; } export default GiplReadImageResult;