Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | import type { VolumeProps } from './VolumeProps'; /** * ImageVolume which is considered a special case of a Volume, which is * constructed out of set of images (imageIds). Unlike Volume which can be * constructed from any type of volumetric data, such as nifti or nrrd, */ interface ImageVolumeProps extends VolumeProps { /** imageIds of the volume (if it is built of separate imageIds) */ imageIds: string[]; /** if the volume is created from a stack, the imageIds of the stack */ referencedImageIds?: string[]; } export type { ImageVolumeProps }; |