itk-wasm
Version:
High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.
16 lines (15 loc) • 412 B
TypeScript
import ImageType from './image-type.js';
import type TypedArray from '../typed-array.js';
import Metadata from './metadata.js';
declare class Image {
readonly imageType: ImageType;
name: string;
origin: number[];
spacing: number[];
direction: TypedArray;
size: number[];
metadata: Metadata;
data: null | TypedArray;
constructor(imageType?: ImageType);
}
export default Image;