bitwiseandcv

Performs bitwise union on given inputs, source1 and source2.

Syntax

R = bitwiseandcv(source1, source2)

R = bitwiseandcv(source1, source2, mask)

Inputs

source1
Handle of an image.
Type: integer
source2
Handle of an image or an integer.
Type: integer
mask
Optional handle of an 8-bit single channel image or a 2D matrix of natural numbers representing the elements in R that need to be changed.
Type: integer | mat

Outputs

R
Handle of the output image.
Type: integer

Examples

Do a bitwise union of two images:

source1 = imreadcv('image1.jpg');
source2 = imreadcv('image2.jpg');
R = bitwiseandcv(source1, source2);
Do a bitwise union of two images with a mask:

source1 = imreadcv('image1.jpg');
source2 = imreadcv('image2.jpg');
masksize = imsizecv(source1);
mask = ones(masksize(1), masksize(2));
R = bitwiseandcv(source1, source2, mask);