Click or drag to resize

XFeatures2DInvokeMatchGMS Method

http://www.emgu.com
GMS (Grid-based Motion Statistics) feature matching strategy

Namespace:  Emgu.CV.XFeatures2D
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public static void MatchGMS(
	Size size1,
	Size size2,
	VectorOfKeyPoint keypoints1,
	VectorOfKeyPoint keypoints2,
	VectorOfDMatch matches1to2,
	VectorOfDMatch matchesGMS,
	bool withRotation = false,
	bool withScale = false,
	double thresholdFactor = 6
)

Parameters

size1
Type: System.DrawingSize
Input size of image1.
size2
Type: System.DrawingSize
Input size of image2.
keypoints1
Type: Emgu.CV.UtilVectorOfKeyPoint
Input keypoints of image1.
keypoints2
Type: Emgu.CV.UtilVectorOfKeyPoint
Input keypoints of image2.
matches1to2
Type: Emgu.CV.UtilVectorOfDMatch
Input 1-nearest neighbor matches.
matchesGMS
Type: Emgu.CV.UtilVectorOfDMatch
Matches returned by the GMS matching strategy.
withRotation (Optional)
Type: SystemBoolean
Take rotation transformation into account.
withScale (Optional)
Type: SystemBoolean
Take scale transformation into account.
thresholdFactor (Optional)
Type: SystemDouble
The higher, the less matches.
See Also