http://www.emgu.com
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Retrieves normalized central moment, which in case of image moments is defined as:
eta_{x_order,y_order}=mu_{x_order,y_order} / M00^{(y_order+x_order)/2+1},
where mu_{x_order,y_order} is the central moment
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public static double cvGetNormalizedCentralMoment( ref MCvMoments moments, int xOrder, int yOrder ) |
Visual Basic |
---|
Public Shared Function cvGetNormalizedCentralMoment ( _ ByRef moments As MCvMoments, _ xOrder As Integer, _ yOrder As Integer _ ) As Double |
Visual C++ |
---|
public: static double cvGetNormalizedCentralMoment( MCvMoments% moments, int xOrder, int yOrder ) |
Parameters
- moments
- Type: Emgu.CV.Structure..::..MCvMoments%
Reference to the moment state structure
- xOrder
- Type: System..::..Int32
x order of the retrieved moment, xOrder >= 0.
- yOrder
- Type: System..::..Int32
y order of the retrieved moment, yOrder >= 0 and xOrder + y_order <= 3