itk-wasm
Version:
High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.
13 lines (12 loc) • 854 B
TypeScript
import IntTypes from './int-types.js';
import FloatTypes from './float-types.js';
import PixelTypes from './pixel-types.js';
declare class PointSetType {
readonly dimension: number;
readonly pointComponentType: (typeof FloatTypes)[keyof typeof FloatTypes];
readonly pointPixelComponentType: (typeof IntTypes)[keyof typeof IntTypes] | (typeof FloatTypes)[keyof typeof FloatTypes];
readonly pointPixelType: (typeof PixelTypes)[keyof typeof PixelTypes];
readonly pointPixelComponents: number;
constructor(dimension?: number, pointComponentType?: (typeof FloatTypes)[keyof typeof FloatTypes], pointPixelComponentType?: (typeof IntTypes)[keyof typeof IntTypes] | (typeof FloatTypes)[keyof typeof FloatTypes], pointPixelType?: (typeof PixelTypes)[keyof typeof PixelTypes], pointPixelComponents?: number);
}
export default PointSetType;