Example #1
0
 public extern static void SetOptions(
     FormExtractionHandle obj,
     int resizeWidth,
     int junctionWidth,
     int junctionHeight,
     int minNumElements,
     int maxJunctions,
     int maxSolutions,
     bool showDebugImage);
Example #2
0
 public static int[] GetDebugImage(FormExtractionHandle obj, int size)
 {
     int[] destination = new int[size];
     Marshal.Copy(GetDebugImage(obj), destination, 0, size);
     return(destination);
 }
Example #3
0
 private extern static IntPtr GetDebugImage(FormExtractionHandle obj);
Example #4
0
 public extern static int RunFormExtraction(FormExtractionHandle obj, int[] imgData, int row, int col);