コード例 #1
0
ファイル: MCvMoments.cs プロジェクト: kittawee/Final-Project
        /// <summary>
        /// Get the HuMoments
        /// </summary>
        /// <returns>The Hu moment computed from this moment</returns>
        public MCvHuMoments GetHuMoment()
        {
            MCvHuMoments huMoment = new MCvHuMoments();

            CvInvoke.cvGetHuMoments(ref this, ref huMoment);
            return(huMoment);
        }
コード例 #2
0
ファイル: CvInvokeImgproc.cs プロジェクト: KaganRoman/Eval
 public static extern void cvGetHuMoments(ref MCvMoments moments, ref MCvHuMoments huMoments);
コード例 #3
0
ファイル: MCvMoments.cs プロジェクト: fajoy/RTSPExample
 /// <summary>
 /// Get the HuMoments 
 /// </summary>
 /// <returns>The Hu moment computed from this moment</returns>
 public MCvHuMoments GetHuMoment()
 {
     MCvHuMoments huMoment = new MCvHuMoments();
      CvInvoke.cvGetHuMoments(ref this, ref huMoment);
      return huMoment;
 }