[This is preliminary documentation and is subject to change.]

Reproject pixels on a 1-channel disparity map to array of 3D points.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public static MCvPoint3D32f[] ReprojectImageTo3D(
	Image<Gray, short> disparity,
	Matrix<double> Q
)
Public Shared Function ReprojectImageTo3D ( _
	disparity As Image(Of Gray, Short), _
	Q As Matrix(Of Double) _
) As MCvPoint3D32f()
public:
static array<MCvPoint3D32f>^ ReprojectImageTo3D(
	Image<Gray, short>^ disparity, 
	Matrix<double>^ Q
)

Parameters

disparity
Image<(Of <(Gray, Int16>)>)
Disparity map
Q
Matrix<(Of <(Double>)>)
The reprojection 4x4 matrix, can be arbitrary, e.g. the one, computed by cvStereoRectify

Return Value

[Missing <returns> documentation for "M:Emgu.CV.PointCollection.ReprojectImageTo3D(Emgu.CV.Image{Emgu.CV.Structure.Gray,System.Int16},Emgu.CV.Matrix{System.Double})"]

See Also