Click or drag to resize

CvInvokeBlendLinear Method

http://www.emgu.com
Performs linear blending of two images: dst(i, j)=weights1(i, j) x src1(i, j) + weights2(i, j) x src2(i, j)

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public static void BlendLinear(
	IInputArray src1,
	IInputArray src2,
	IInputArray weights1,
	IInputArray weights2,
	IOutputArray dst
)

Parameters

src1
Type: Emgu.CVIInputArray
It has a type of CV_8UC(n) or CV_32FC(n), where n is a positive integer.
src2
Type: Emgu.CVIInputArray
It has the same type and size as src1.
weights1
Type: Emgu.CVIInputArray
It has a type of CV_32FC1 and the same size with src1.
weights2
Type: Emgu.CVIInputArray
It has a type of CV_32FC1 and the same size with src1.
dst
Type: Emgu.CVIOutputArray
It is created if it does not have the same size and type with src1.
See Also