UNPKG

simple-homography

Version:

Calculates a homography matrix using exact point correspondences

3 lines (2 loc) 198 B
import { Matrix } from 'mathjs'; export declare function calculateHomography(a1: number[], b1: number[], a2: number[], b2: number[], a3: number[], b3: number[], a4: number[], b4: number[]): Matrix;