Performs linear blending of two images.
dst = cv.blendLinear(src1, src2, weights1, weights2)
Input
- src1 First image, either
uint8
or single
depth.
- src2 second image of same size and type as
src1
.
- weights1 floating-point matrix of size same as input images.
- weights2 floating-point matrix of size same as input images.
Output
- dst blended image, of same size and type as input images.