cv.blendLinear - MATLAB File Help
cv.blendLinear

Performs linear blending of two images

dst = cv.blendLinear(src1, src2, weights1, weights2)

Input

Output

Performs linear blending of two images:

dst(i,j) = weights1(i,j) * src1(i,j) + weights2(i,j) * src2(i,j)
See also