Interface GetAffineTransformResult

interface GetAffineTransformResult {
    stats: {
        nbDestinationKeypoints: number;
        nbInliers: number;
        nbMatches: number;
        nbRansacIterations: number;
        nbSourceKeypoints: number;
    };
    transform: AffineTransform;
}

Properties

Properties

stats: {
    nbDestinationKeypoints: number;
    nbInliers: number;
    nbMatches: number;
    nbRansacIterations: number;
    nbSourceKeypoints: number;
}

Type declaration

  • nbDestinationKeypoints: number

    Number of destination keypoints used for matching.

  • nbInliers: number

    Number of inliers resulting from the ransac algorithm.

  • nbMatches: number

    Number of matches of feature matching between source and destination. The bigger this number is, the better.

  • nbRansacIterations: number

    Number of iterations of the RANSAC algorithm.

  • nbSourceKeypoints: number

    Number of source keypoints used for matching.

transform: AffineTransform

Affine transformation from source to destination.