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
keypoints1IEnumerable<KeyPoint>Input keypoints of image1.
keypoints2IEnumerable<KeyPoint>Input keypoints of image2.
nn1IEnumerable<int>Index to the closest BoW centroid for each descriptors of image1.
nn2IEnumerable<int>Index to the closest BoW centroid for each descriptors of image2.
Returns
- DMatch[]
Matches returned by the LOGOS matching strategy.