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