cv.bitwise_or - MATLAB File Help
cv.bitwise_or

Calculates the per-element bit-wise disjunction of two arrays or an array and a scalar

dst = cv.bitwise_or(src1, src2)
dst = cv.bitwise_or(src1, src2, 'OptionName', optionValue, ...)

Input

Output

Options

The function calculates the per-element bit-wise logical disjunction for:

In case of floating-point arrays, their machine-specific bit representations (usually IEEE754-compliant) are used for the operation. In case of multi-channel arrays, each channel is processed independently. In the second and third cases above, the scalar is first converted to the array type.

See also