Click or drag to resize
CudaInvokeBlendLinear Method
http://www.emgu.com
Performs linear blending of two images.

Namespace: Emgu.CV.Cuda
Assembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public static void BlendLinear(
	IInputArray img1,
	IInputArray img2,
	IInputArray weights1,
	IInputArray weights2,
	IOutputArray result,
	Stream stream = null
)

Parameters

img1
Type: Emgu.CVIInputArray
First image. Supports only CV_8U and CV_32F depth.
img2
Type: Emgu.CVIInputArray
Second image. Must have the same size and the same type as img1 .
weights1
Type: Emgu.CVIInputArray
Weights for first image. Must have tha same size as img1. Supports only CV_32F type.
weights2
Type: Emgu.CVIInputArray
Weights for second image. Must have tha same size as img2. Supports only CV_32F type.
result
Type: Emgu.CVIOutputArray
Destination image.
stream (Optional)
Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).
See Also