ImageTColor, TDepthMul Method (ImageTColor, TDepth) |
http://www.emgu.com Elementwise multiply img2 with the current image
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic Image<TColor, TDepth> Mul(
Image<TColor, TDepth> img2
)
Public Function Mul (
img2 As Image(Of TColor, TDepth)
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ Mul(
Image<TColor, TDepth>^ img2
)
member Mul :
img2 : Image<'TColor, 'TDepth> -> Image<'TColor, 'TDepth>
Parameters
- img2
- Type: Emgu.CVImageTColor, TDepth
The image to be elementwise multiplied to the current image
Return Value
Type:
ImageTColor,
TDepth this .* img2
See Also