// computing hu moments
Moments moments2=moments(croppedImage,false);
double hu[7];
HuMoments(moments2,hu);
this code gives the hu moment for the contours. Can any body provide the equivalent code in Emgucv C#?
partial C# code
MCvMoments moments = contours.GetMoments();
MCvHuMoments Humoments;
CvInvoke.cvGetHuMoments(moments,.........);
struggling with 2nd parameter for cvGetHuMoments method.