StreamEnqueueConvert Method
|
converts matrix type, ex from float to uchar depending on type
Namespace:
OpenCvSharp.Cuda
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic void EnqueueConvert(
GpuMat src,
GpuMat dst,
int dtype,
double a = 1,
double b = 0
)
Public Sub EnqueueConvert (
src As GpuMat,
dst As GpuMat,
dtype As Integer,
Optional a As Double = 1,
Optional b As Double = 0
)
public:
void EnqueueConvert(
GpuMat^ src,
GpuMat^ dst,
int dtype,
double a = 1,
double b = 0
)
member EnqueueConvert :
src : GpuMat *
dst : GpuMat *
dtype : int *
?a : float *
?b : float
(* Defaults:
let _a = defaultArg a 1
let _b = defaultArg b 0
*)
-> unit
function EnqueueConvert(src, dst, dtype, a, b);
Parameters
- src
- Type: OpenCvSharp.CudaGpuMat
- dst
- Type: OpenCvSharp.CudaGpuMat
- dtype
- Type: SystemInt32
- a (Optional)
- Type: SystemDouble
- b (Optional)
- Type: SystemDouble
See Also