The Optimal Triangulation Method
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void CorrectMatches( CvMat f, CvMat points1, CvMat points2, CvMat newPoints1, CvMat newPoints2 )
Parameters
- f
- Type: OpenCvSharpCvMat
3x3 fundamental matrix - points1
- Type: OpenCvSharpCvMat
2xN matrix containing the first set of points - points2
- Type: OpenCvSharpCvMat
2xN matrix containing the second set of points - newPoints1
- Type: OpenCvSharpCvMat
the optimized points1_. if this is null, the corrected points are placed back in points1_ - newPoints2
- Type: OpenCvSharpCvMat
the optimized points2_. if this is null, the corrected points are placed back in points2_
See Also