Table of Contents

Method MatchLOGOS

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

MatchLOGOS(IEnumerable<KeyPoint>, IEnumerable<KeyPoint>, IEnumerable<int>, IEnumerable<int>)

LOGOS (Local geometric support for high-outlier spatial verification) feature matching strategy.

public static DMatch[] MatchLOGOS(IEnumerable<KeyPoint> keypoints1, IEnumerable<KeyPoint> keypoints2, IEnumerable<int> nn1, IEnumerable<int> nn2)

Parameters

keypoints1 IEnumerable<KeyPoint>

Input keypoints of image1.

keypoints2 IEnumerable<KeyPoint>

Input keypoints of image2.

nn1 IEnumerable<int>

Index to the closest BoW centroid for each descriptors of image1.

nn2 IEnumerable<int>

Index to the closest BoW centroid for each descriptors of image2.

Returns

DMatch[]

Matches returned by the LOGOS matching strategy.