itk-wasm
Version:
High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.
11 lines (10 loc) • 691 B
TypeScript
import TransformParameterizations from './transform-parameterizations.js';
import FloatTypes from './float-types.js';
declare class TransformType {
readonly transformParameterization: (typeof TransformParameterizations)[keyof typeof TransformParameterizations];
readonly parametersValueType: typeof FloatTypes[keyof typeof FloatTypes];
readonly inputDimension: number;
readonly outputDimension: number;
constructor(transformParameterization?: (typeof TransformParameterizations)[keyof typeof TransformParameterizations], parametersValueType?: typeof FloatTypes[keyof typeof FloatTypes], inputDimension?: number, outputDimension?: number);
}
export default TransformType;