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)
Syntaxpublic static void AlphaComp(
IInputArray img1,
IInputArray img2,
IOutputArray dst,
AlphaCompTypes alphaOp,
Stream stream = null
)
Public Shared Sub AlphaComp (
img1 As IInputArray,
img2 As IInputArray,
dst As IOutputArray,
alphaOp As AlphaCompTypes,
Optional stream As Stream = Nothing
)
public:
static void AlphaComp(
IInputArray^ img1,
IInputArray^ img2,
IOutputArray^ dst,
AlphaCompTypes alphaOp,
Stream^ stream = nullptr
)
static member AlphaComp :
img1 : IInputArray *
img2 : IInputArray *
dst : IOutputArray *
alphaOp : AlphaCompTypes *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
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