CudaInvokeBlendLinear Method |
http://www.emgu.com
Performs linear blending of two images.
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static void BlendLinear(
IInputArray img1,
IInputArray img2,
IInputArray weights1,
IInputArray weights2,
IOutputArray result,
Stream stream = null
)
Public Shared Sub BlendLinear (
img1 As IInputArray,
img2 As IInputArray,
weights1 As IInputArray,
weights2 As IInputArray,
result As IOutputArray,
Optional stream As Stream = Nothing
)
public:
static void BlendLinear(
IInputArray^ img1,
IInputArray^ img2,
IInputArray^ weights1,
IInputArray^ weights2,
IOutputArray^ result,
Stream^ stream = nullptr
)
static member BlendLinear :
img1 : IInputArray *
img2 : IInputArray *
weights1 : IInputArray *
weights2 : IInputArray *
result : IOutputArray *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
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