Example #1
0
 public static extern void GetCvStructSizes(ref CvStructSizes sizes);
Example #2
0
 /// <summary>
 /// This function retrieve the Open CV structure sizes in unmanaged code
 /// </summary>
 /// <returns>The structure that will hold the Open CV structure sizes</returns>
 public static CvStructSizes GetCvStructSizes()
 {
    CvStructSizes sizes = new CvStructSizes();
    cveGetCvStructSizes(ref sizes);
    return sizes;
 }
Example #3
0
 private static extern void cveGetCvStructSizes(ref CvStructSizes sizes);
Example #4
0
      /// <summary>
      /// Check if the size of the C structures match those of C#
      /// </summary>
      /// <returns>True if the size matches</returns>
      public static bool SanityCheck()
      {
         bool sane = true;
         CvStructSizes sizes = new CvStructSizes();
         CvInvoke.GetCvStructSizes(ref sizes);

         sane &= (sizes.CvBox2D == Marshal.SizeOf(typeof(MCvBox2D)));
         sane &= (sizes.CvContour == Marshal.SizeOf(typeof(MCvContour)));
         sane &= (sizes.CvHistogram == Marshal.SizeOf(typeof(MCvHistogram)));
         sane &= (sizes.CvMat == Marshal.SizeOf(typeof(MCvMat)));
         sane &= (sizes.CvMatND == Marshal.SizeOf(typeof(MCvMatND)));
         sane &= (sizes.CvPoint == Marshal.SizeOf(typeof(System.Drawing.Point)));
         sane &= (sizes.CvPoint2D32f == Marshal.SizeOf(typeof(System.Drawing.PointF)));
         sane &= (sizes.CvPoint3D32f == Marshal.SizeOf(typeof(MCvPoint3D32f)));
         sane &= (sizes.CvRect == Marshal.SizeOf(typeof(System.Drawing.Rectangle)));
         sane &= (sizes.CvScalar == Marshal.SizeOf(typeof(MCvScalar)));
         sane &= (sizes.CvSeq == Marshal.SizeOf(typeof(MCvSeq)));
         sane &= (sizes.CvSize == Marshal.SizeOf(typeof(System.Drawing.Size)));
         sane &= (sizes.CvSize2D32f == Marshal.SizeOf(typeof(System.Drawing.SizeF)));
         sane &= (sizes.CvTermCriteria == Marshal.SizeOf(typeof(MCvTermCriteria)));
         sane &= (sizes.ERStat == Marshal.SizeOf(typeof(MCvERStat)));

         return sane;
      }