Click or drag to resize

Cv2BitwiseAnd Method

computes bitwise conjunction of the two arrays (dst = src1 & src2)

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static void BitwiseAnd(
	InputArray src1,
	InputArray src2,
	OutputArray dst,
	InputArray mask = null
)

Parameters

src1
Type: OpenCvSharpInputArray
first input array or a scalar.
src2
Type: OpenCvSharpInputArray
second input array or a scalar.
dst
Type: OpenCvSharpOutputArray
output array that has the same size and type as the input
mask (Optional)
Type: OpenCvSharpInputArray
optional operation mask, 8-bit single channel array, that specifies elements of the output array to be changed.
See Also