PointCollectionReprojectImageTo3D Method |
http://www.emgu.com
Re-project pixels on a 1-channel disparity map to array of 3D points.
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntaxpublic static MCvPoint3D32f[] ReprojectImageTo3D(
IInputArray disparity,
IInputArray Q
)
Public Shared Function ReprojectImageTo3D (
disparity As IInputArray,
Q As IInputArray
) As MCvPoint3D32f()
public:
static array<MCvPoint3D32f>^ ReprojectImageTo3D(
IInputArray^ disparity,
IInputArray^ Q
)
static member ReprojectImageTo3D :
disparity : IInputArray *
Q : IInputArray -> MCvPoint3D32f[]
Parameters
- disparity
- Type: Emgu.CVIInputArray
Disparity map - Q
- Type: Emgu.CVIInputArray
The re-projection 4x4 matrix, can be arbitrary, e.g. the one, computed by cvStereoRectify
Return Value
Type:
MCvPoint3D32fThe reprojected 3D points
See Also