CudaInvokeBitwiseXor Method |
http://www.emgu.com
Calculates per-element bit-wise logical conjunction of two GpuMats:
dst(I)=src1(I)^src2(I) if mask(I)!=0
In the case of floating-point GpuMats their bit representations are used for the operation. All the GpuMats must have the same type, except the mask, and the same size
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static void BitwiseXor(
IInputArray src1,
IInputArray src2,
IOutputArray dst,
IInputArray mask = null,
Stream stream = null
)
Public Shared Sub BitwiseXor (
src1 As IInputArray,
src2 As IInputArray,
dst As IOutputArray,
Optional mask As IInputArray = Nothing,
Optional stream As Stream = Nothing
)
public:
static void BitwiseXor(
IInputArray^ src1,
IInputArray^ src2,
IOutputArray^ dst,
IInputArray^ mask = nullptr,
Stream^ stream = nullptr
)
static member BitwiseXor :
src1 : IInputArray *
src2 : IInputArray *
dst : IOutputArray *
?mask : IInputArray *
?stream : Stream
(* Defaults:
let _mask = defaultArg mask null
let _stream = defaultArg stream null
*)
-> unit
Parameters
- src1
- Type: Emgu.CVIInputArray
The first source GpuMat - src2
- Type: Emgu.CVIInputArray
The second source GpuMat - dst
- Type: Emgu.CVIOutputArray
The destination GpuMat - mask (Optional)
- Type: Emgu.CVIInputArray
Mask, 8-bit single channel GpuMat; specifies elements of destination GpuMat to be changed. Use IntPtr.Zero if not needed. - 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