Interface Match

interface Match {
    destinationIndex: number;
    distance: number;
    sourceIndex: number;
}

Properties

destinationIndex: number

Index of the destination keypoint.

distance: number

Distance from source to destination keypoints.

sourceIndex: number

Index of the source keypoint.