Transforms 1-channel disparity map to 3-channel image, a 3D surface.

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.649 (2.1.0.649)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void cvReprojectImageTo3D(
	IntPtr disparity,
	IntPtr image3D,
	IntPtr Q
)
Public Shared Sub cvReprojectImageTo3D ( _
	disparity As IntPtr, _
	image3D As IntPtr, _
	Q As IntPtr _
)
public:
static void cvReprojectImageTo3D(
	IntPtr disparity, 
	IntPtr image3D, 
	IntPtr Q
)

Parameters

disparity
IntPtr
Disparity map
image3D
IntPtr
3-channel, 16-bit integer or 32-bit floating-point image - the output map of 3D points
Q
IntPtr
The reprojection 4x4 matrix, can be arbitrary, e.g. the one, computed by cvStereoRectify

See Also