ImageTColor, TDepthSub Method (ImageTColor, TDepth) |
http://www.emgu.com Elementwise subtract another image from 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> Sub(
Image<TColor, TDepth> img2
)
Public Function Sub (
img2 As Image(Of TColor, TDepth)
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ Sub(
Image<TColor, TDepth>^ img2
)
member Sub :
img2 : Image<'TColor, 'TDepth> -> Image<'TColor, 'TDepth>
Parameters
- img2
- Type: Emgu.CVImageTColor, TDepth
The second image to be subtracted from the current image
Return Value
Type:
ImageTColor,
TDepth The result of elementwise subtracting img2 from the current image
See Also