Table of Contents

Method BitwiseOr

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

BitwiseOr(InputArray, InputArray, OutputArray, InputArray)

computes bitwise disjunction of the two arrays (dst = src1 | src2)

public static void BitwiseOr(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.