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