CudaInvokeDrawColorDisp Method |
http://www.emgu.com
Colors a disparity image.
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic static void DrawColorDisp(
IInputArray srcDisp,
IOutputArray dstDisp,
int ndisp,
Stream stream = null
)
Public Shared Sub DrawColorDisp (
srcDisp As IInputArray,
dstDisp As IOutputArray,
ndisp As Integer,
Optional stream As Stream = Nothing
)
public:
static void DrawColorDisp(
IInputArray^ srcDisp,
IOutputArray^ dstDisp,
int ndisp,
Stream^ stream = nullptr
)
static member DrawColorDisp :
srcDisp : IInputArray *
dstDisp : IOutputArray *
ndisp : int *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
Parameters
- srcDisp
- Type: Emgu.CVIInputArray
Input single-channel 8-bit unsigned, 16-bit signed, 32-bit signed or 32-bit floating-point disparity image. If 16-bit signed format is used, the values are assumed to have no fractional bits. - dstDisp
- Type: Emgu.CVIOutputArray
Output disparity image. It has the same size as src_disp. The type is CV_8UC4 in BGRA format (alpha = 255). - ndisp
- Type: SystemInt32
Number of disparities. - stream (Optional)
- Type: Emgu.CV.CudaStream
Stream for the asynchronous version.
See Also