Mij | R Documentation |
Calculate the raw Hu image moment Mij.
Mij(x, s, i = 0, j = 0)
x |
A matrix. |
s |
A two-column matrix giving the location coordinates. May be missing in which case they are assumed to be integers giving the row and column numbers. |
i , j |
Integer giving the moment order for each coordinate x and y, resp. |
The raw moment M(ij) (Hu 1962) is calculated by
M(ij) = sum(x^i * y^j * Im[i, j])
where x and y are the pixel coordinates and Im is the (image) matrix. Various useful properties of an image may be gleaned from certain moments. For example, the image area is given by M(00), and the image centroid is (M(10) / M(00), M(01) / M(00)). The image orientation angle can also be derived.
A single numeric giving the desired moment is returned.
Eric Gilleland
Hu, M. K. (1962) Visual Pattern Recognition by Moment Invariants. IRE Trans. Info. Theory, IT-8, 179–187.
imomenter
data( "geom000" )
Mij( geom000 ) # area
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.