Computes rectification transform for uncalibrated stereo camera
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static int StereoRectifyUncalibrated( CvMat points1, CvMat points2, CvMat F, CvSize imgSize, CvMat H1, CvMat H2 )
Parameters
- points1
- Type: OpenCvSharpCvMat
The 2 arrays of corresponding 2D points. - points2
- Type: OpenCvSharpCvMat
The 2 arrays of corresponding 2D points. - F
- Type: OpenCvSharpCvMat
Fundamental matrix. It can be computed using the same set of point pairs points1 and points2 using cvFindFundamentalMat - imgSize
- Type: OpenCvSharpCvSize
Size of the image. - H1
- Type: OpenCvSharpCvMat
The rectification homography matrices for the first and for the second images. - H2
- Type: OpenCvSharpCvMat
The rectification homography matrices for the first and for the second images.
Return Value
Type: Int32[Missing <returns> documentation for "M:OpenCvSharp.Cv.StereoRectifyUncalibrated(OpenCvSharp.CvMat,OpenCvSharp.CvMat,OpenCvSharp.CvMat,OpenCvSharp.CvSize,OpenCvSharp.CvMat,OpenCvSharp.CvMat)"]
See Also