MCvMomentsGetSpatialMoment Method |
http://www.emgu.com
Retrieves the spatial moment, which in case of image moments is defined as:
M_{x_order,y_order}=sum_{x,y}(I(x,y) * x^{x_order} * y^{y_order})
where I(x,y) is the intensity of the pixel (x, y).
Namespace: Emgu.CV.StructureAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic double GetSpatialMoment(
int xOrder,
int yOrder
)
Public Function GetSpatialMoment (
xOrder As Integer,
yOrder As Integer
) As Double
public:
double GetSpatialMoment(
int xOrder,
int yOrder
)
member GetSpatialMoment :
xOrder : int *
yOrder : int -> float
Parameters
- xOrder
- Type: SystemInt32
x order of the retrieved moment, x_order >= 0 - yOrder
- Type: SystemInt32
y order of the retrieved moment, y_order >= 0 and x_order + y_order <= 3
Return Value
Type:
DoubleThe spatial moment of the specific order
See Also