cv.blendLinear - MATLAB File Help |
Performs linear blending of two images
dst = cv.blendLinear(src1, src2, weights1, weights2)
uint8
or single
, and any
number of channels.src1
.Performs linear blending of two images:
dst(i,j) = weights1(i,j) * src1(i,j) + weights2(i,j) * src2(i,j)