Click or drag to resize

CudaInvokeBitwiseNot Method

http://www.emgu.com
Calculates per-element bit-wise logical not dst(I)=~src(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.Cuda
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntax
public static void BitwiseNot(
	IInputArray src,
	IOutputArray dst,
	IInputArray mask = null,
	Stream stream = null
)

Parameters

src
Type: Emgu.CVIInputArray
The 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