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

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

Syntax

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

Parameters

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

See Also