Calculates fundamental matrix from corresponding points in two images
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static int FindFundamentalMat( CvMat points1, CvMat points2, CvMat fundamentalMatrix, FundamentalMatMethod method )
Parameters
- points1
- Type: OpenCvSharpCvMat
Array of the first image points of 2xN, Nx2, 3xN or Nx3 size (where N is number of points). Multi-channel 1xN or Nx1 array is also acceptable. The point coordinates should be floating-point (single or double precision) - points2
- Type: OpenCvSharpCvMat
Array of the second image points of the same size and format as points1 - fundamentalMatrix
- Type: OpenCvSharpCvMat
The output fundamental matrix or matrices. The size should be 3x3 or 9x3 (7-point method may return up to 3 matrices). - method
- Type: OpenCvSharpFundamentalMatMethod
Method for computing the fundamental matrix
Return Value
Type: Int32[Missing <returns> documentation for "M:OpenCvSharp.Cv.FindFundamentalMat(OpenCvSharp.CvMat,OpenCvSharp.CvMat,OpenCvSharp.CvMat,OpenCvSharp.FundamentalMatMethod)"]
See Also