CudaStereoConstantSpaceBPFindStereoCorrespondence Method |
http://www.emgu.com
Computes disparity map for the input rectified stereo pair.
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic void FindStereoCorrespondence(
IInputArray left,
IInputArray right,
IOutputArray disparity,
Stream stream = null
)
Public Sub FindStereoCorrespondence (
left As IInputArray,
right As IInputArray,
disparity As IOutputArray,
Optional stream As Stream = Nothing
)
public:
void FindStereoCorrespondence(
IInputArray^ left,
IInputArray^ right,
IOutputArray^ disparity,
Stream^ stream = nullptr
)
member FindStereoCorrespondence :
left : IInputArray *
right : IInputArray *
disparity : IOutputArray *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
Parameters
- left
- Type: Emgu.CVIInputArray
The left single-channel, 8-bit image - right
- Type: Emgu.CVIInputArray
The right image of the same size and the same type - disparity
- Type: Emgu.CVIOutputArray
The disparity map - stream (Optional)
- Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).
See Also