Table of Contents

Method BitwiseAnd

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

BitwiseAnd(InputArray, InputArray, OutputArray, InputArray)

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

public static void BitwiseAnd(InputArray src1, InputArray src2, OutputArray dst, InputArray mask = default)

Parameters

src1 InputArray

first input array or a scalar.

src2 InputArray

second input array or a scalar.

dst OutputArray

output array that has the same size and type as the input

mask InputArray

optional operation mask, 8-bit single channel array, that specifies elements of the output array to be changed.