Click or drag to resize

CudaInvokeAlphaComp Method

http://www.emgu.com
Composites two images using alpha opacity values contained in each image.

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntax
public static void AlphaComp(
	IInputArray img1,
	IInputArray img2,
	IOutputArray dst,
	AlphaCompTypes alphaOp,
	Stream stream = null
)

Parameters

img1
Type: Emgu.CVIInputArray
First image. Supports CV_8UC4 , CV_16UC4 , CV_32SC4 and CV_32FC4 types.
img2
Type: Emgu.CVIInputArray
Second image. Must have the same size and the same type as img1 .
dst
Type: Emgu.CVIOutputArray
Destination image
alphaOp
Type: Emgu.CV.CudaAlphaCompTypes
Flag specifying the alpha-blending operation
stream (Optional)
Type: Emgu.CV.CudaStream
Stream for the asynchronous version
See Also