bitwiseOR function
BitwiseOr calculates the per-element bit-wise disjunction of two arrays or an array and a scalar.
For further details, please see: https://docs.opencv.org/master/d2/de8/group__core__array.html#gab85523db362a4e26ff0c703793a719b4
Implementation
Mat bitwiseOR(
InputArray src1,
InputArray src2, {
OutputArray? dst,
InputArray? mask,
}) {
dst ??= Mat.empty();
mask == null
? cvRun(() => ccore.cv_bitwise_or(src1.ref, src2.ref, dst!.ref, ffi.nullptr))
: cvRun(() => ccore.cv_bitwise_or_1(src1.ref, src2.ref, dst!.ref, mask.ref, ffi.nullptr));
return dst;
}