multiplycv
Calculates product of each element in source1 and source2.
Syntax
R = multiplycv(source1, source2...)
R = multiplycv(source1, source2, scale, depth)
Inputs
- source1
 - Handle of an image, scalar or a 2D real matrix. If source1 and source2 are image handles, their size and number of channels must match.
 - source2
 - Handle of an image, scalar or a 2D real matrix. If source1 and source2 are image handles, their size and number of channels must match.
 - scale
 - Optional scale factor applied to each element of R.
 - depth
 - Optional parameter specifying the depth of R. If negative, the same depth as source1 and source2 will be used.
 
Outputs
- R
 - Handle of the output image.
 
Example
source1 = imreadcv('image1.jpg');
source2 = imreadcv('image2.jpg');
R = multiplycv(source1, source2);