@allmaps/transform
Version:
Coordinate transformation functions
19 lines (18 loc) • 2.05 kB
TypeScript
export { GcpTransformer } from './transformers/GcpTransformer.js';
export { GeneralGcpTransformer } from './transformers/GeneralGcpTransformer.js';
export { BaseIndependentLinearWeightsTransformation } from './transformation-types/BaseIndependentLinearWeightsTransformation.js';
export { BaseLinearWeightsTransformation } from './transformation-types/BaseLinearWeightsTransformation.js';
export { BasePolynomialTransformation } from './transformation-types/BasePolynomialTransformation.js';
export { BaseTransformation } from './transformation-types/BaseTransformation.js';
export { Helmert } from './transformation-types/Helmert.js';
export { Polynomial1 } from './transformation-types/Polynomial1.js';
export { Polynomial2 } from './transformation-types/Polynomial2.js';
export { Polynomial3 } from './transformation-types/Polynomial3.js';
export { Projective } from './transformation-types/Projective.js';
export { RBF } from './transformation-types/RBF.js';
export { Straight } from './transformation-types/Straight.js';
export { transformationTypeToTypeAndOrder, typeAndOrderToTransformationType } from './shared/conversion-functions.js';
export { supportedDistortionMeasures, computeDistortionsFromPartialDerivatives } from './shared/distortion.js';
export { defaultGeneralGcpTransformerOptions, defaultGcpTransformerOptions, defaultGeneralGcpTransformOptions, defaultGcpTransformOptions } from './shared/transform-functions.js';
export { solveIndependentlyInverse, solveIndependentlyPseudoInverse, solveJointlyPseudoInverse, solveJointlySvd } from './shared/solve-functions.js';
export type { GeneralGcp, Distortions, GeneralGcpAndDistortions, GcpAndDistortions, InverseOptions, RefinementOptions, SplitGcpLinePointInfo, SplitGcpLineInfo, TransformationType, GcpsInputs, TransformationTypeInputs, GcpTransformerInputs, GeneralGcpTransformerOptions, GcpTransformerOptions, GeneralGcpTransformOptions, GcpTransformOptions, KernelFunction, KernelFunctionOptions, NormFunction, DistortionMeasure, ProjectionFunction } from './shared/types.js';