itk-wasm
Version:
High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.
15 lines (14 loc) • 439 B
TypeScript
import TransformType from './transform-type.js';
import type TypedArray from '../typed-array.js';
declare class Transform {
transformType: TransformType;
numberOfFixedParameters: number;
numberOfParameters: number;
name: string;
inputSpaceName: string;
outputSpaceName: string;
parameters: TypedArray;
fixedParameters: TypedArray;
constructor(transformType?: TransformType);
}
export default Transform;