| Cv2CorrectMatches Method (InputArray, InputArray, InputArray, OutputArray, OutputArray) |
Refines coordinates of corresponding points.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static void CorrectMatches(
InputArray F,
InputArray points1,
InputArray points2,
OutputArray newPoints1,
OutputArray newPoints2
)
Public Shared Sub CorrectMatches (
F As InputArray,
points1 As InputArray,
points2 As InputArray,
newPoints1 As OutputArray,
newPoints2 As OutputArray
)
public:
static void CorrectMatches(
InputArray^ F,
InputArray^ points1,
InputArray^ points2,
OutputArray^ newPoints1,
OutputArray^ newPoints2
)
static member CorrectMatches :
F : InputArray *
points1 : InputArray *
points2 : InputArray *
newPoints1 : OutputArray *
newPoints2 : OutputArray -> unit
Parameters
- F
- Type: OpenCvSharpInputArray
3x3 fundamental matrix. - points1
- Type: OpenCvSharpInputArray
1xN array containing the first set of points. - points2
- Type: OpenCvSharpInputArray
1xN array containing the second set of points. - newPoints1
- Type: OpenCvSharpOutputArray
The optimized points1. - newPoints2
- Type: OpenCvSharpOutputArray
The optimized points2.
See Also