Click or drag to resize

Cv2CorrectMatches Method (Double, IEnumerablePoint2d, IEnumerablePoint2d, Point2d, Point2d)

Refines coordinates of corresponding points.

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static void CorrectMatches(
	double[,] F,
	IEnumerable<Point2d> points1,
	IEnumerable<Point2d> points2,
	out Point2d[] newPoints1,
	out Point2d[] newPoints2
)

Parameters

F
Type: SystemDouble
3x3 fundamental matrix.
points1
Type: System.Collections.GenericIEnumerablePoint2d
1xN array containing the first set of points.
points2
Type: System.Collections.GenericIEnumerablePoint2d
1xN array containing the second set of points.
newPoints1
Type: OpenCvSharpPoint2d
The optimized points1.
newPoints2
Type: OpenCvSharpPoint2d
The optimized points2.
See Also