Emgu CV Library Documentation
cvStereoRectifyUncalibrated Method (points1, points2, F, imageSize, H1, H2, threshold)
NamespacesEmgu.CVCvInvokecvStereoRectifyUncalibrated(IntPtr, IntPtr, IntPtr, Size, IntPtr, IntPtr, Double)

www.emgu.com/wiki
computes the rectification transformations without knowing intrinsic parameters of the cameras and their relative position in space, hence the suffix "Uncalibrated". Another related difference from cvStereoRectify is that the function outputs not the rectification transformations in the object (3D) space, but the planar perspective transformations, encoded by the homography matrices H1 and H2. The function implements the following algorithm [Hartley99].
Declaration Syntax
C#Visual BasicVisual C++
public static void cvStereoRectifyUncalibrated(
	IntPtr points1,
	IntPtr points2,
	IntPtr F,
	Size imageSize,
	IntPtr H1,
	IntPtr H2,
	double threshold
)
Public Shared Sub cvStereoRectifyUncalibrated ( _
	points1 As IntPtr, _
	points2 As IntPtr, _
	F As IntPtr, _
	imageSize As Size, _
	H1 As IntPtr, _
	H2 As IntPtr, _
	threshold As Double _
)
public:
static void cvStereoRectifyUncalibrated(
	IntPtr points1, 
	IntPtr points2, 
	IntPtr F, 
	Size imageSize, 
	IntPtr H1, 
	IntPtr H2, 
	double threshold
)
Parameters
points1 (IntPtr)
The array of 2D points
points2 (IntPtr)
The array of 2D points
F (IntPtr)
Fundamental matrix. It can be computed using the same set of point pairs points1 and points2 using cvFindFundamentalMat
imageSize (Size)
Size of the image
H1 (IntPtr)
The rectification homography matrices for the first images
H2 (IntPtr)
The rectification homography matrices for the second images
threshold (Double)
If the parameter is greater than zero, then all the point pairs that do not comply the epipolar geometry well enough (that is, the points for which fabs(points2[i]T*F*points1[i])>threshold) are rejected prior to computing the homographies
Remarks
Note that while the algorithm does not need to know the intrinsic parameters of the cameras, it heavily depends on the epipolar geometry. Therefore, if the camera lenses have significant distortion, it would better be corrected before computing the fundamental matrix and calling this function. For example, distortion coefficients can be estimated for each head of stereo camera separately by using cvCalibrateCamera2 and then the images can be corrected using cvUndistort2

Assembly: Emgu.CV (Module: Emgu.CV) Version: 1.5.0.0 (1.5.0.0)