ImageTColor, TDepthAbsDiff Method (ImageTColor, TDepth) |
http://www.emgu.com
Computes absolute different between this image and the other image
Namespace:
Emgu.CV
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic Image<TColor, TDepth> AbsDiff(
Image<TColor, TDepth> img2
)
Public Function AbsDiff (
img2 As Image(Of TColor, TDepth)
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ AbsDiff(
Image<TColor, TDepth>^ img2
)
member AbsDiff :
img2 : Image<'TColor, 'TDepth> -> Image<'TColor, 'TDepth>
Parameters
- img2
- Type: Emgu.CVImageTColor, TDepth
The other image to compute absolute different with
Return Value
Type:
ImageTColor,
TDepth The image that contains the absolute different value
See Also