Emgu CV Library Documentation
cvFindExtrinsicCameraParams2 Method (objectPoints, imagePoints, intrinsicMatrix, distortionCoeffs, rotationVector, translationVector)
NamespacesEmgu.CVCvInvokecvFindExtrinsicCameraParams2(IntPtr, IntPtr, IntPtr, IntPtr, IntPtr, IntPtr)

www.emgu.com/wiki
Estimates extrinsic camera parameters using known intrinsic parameters and and extrinsic parameters for each view. The coordinates of 3D object points and their correspondent 2D projections must be specified. This function also minimizes back-projection error
Declaration Syntax
C#Visual BasicVisual C++
public static void cvFindExtrinsicCameraParams2(
	IntPtr objectPoints,
	IntPtr imagePoints,
	IntPtr intrinsicMatrix,
	IntPtr distortionCoeffs,
	IntPtr rotationVector,
	IntPtr translationVector
)
Public Shared Sub cvFindExtrinsicCameraParams2 ( _
	objectPoints As IntPtr, _
	imagePoints As IntPtr, _
	intrinsicMatrix As IntPtr, _
	distortionCoeffs As IntPtr, _
	rotationVector As IntPtr, _
	translationVector As IntPtr _
)
public:
static void cvFindExtrinsicCameraParams2(
	IntPtr objectPoints, 
	IntPtr imagePoints, 
	IntPtr intrinsicMatrix, 
	IntPtr distortionCoeffs, 
	IntPtr rotationVector, 
	IntPtr translationVector
)
Parameters
objectPoints (IntPtr)
The array of object points, 3xN or Nx3, where N is the number of points in the view
imagePoints (IntPtr)
The array of corresponding image points, 2xN or Nx2, where N is the number of points in the view
intrinsicMatrix (IntPtr)
The camera matrix (A) [fx 0 cx; 0 fy cy; 0 0 1].
distortionCoeffs (IntPtr)
The vector of distortion coefficients, 4x1 or 1x4 [k1, k2, p1, p2]. If it is NULL, all distortion coefficients are considered 0's.
rotationVector (IntPtr)
The output 3x1 or 1x3 rotation vector (compact representation of a rotation matrix, see cvRodrigues2).
translationVector (IntPtr)
The output 3x1 or 1x3 translation vector

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