Esempio n. 1
0
 public OCRFragment(string text, int x, int y, int width, int height, OCRFragmentType type = OCRFragmentType.None)
 {
     Text   = text;
     X      = x;
     Y      = y;
     Width  = width;
     Type   = type;
     Height = height;
 }
Esempio n. 2
0
 public void AddFragment(string text, int x, int y, int width, int height, OCRFragmentType type = OCRFragmentType.None)
 {
     _Fragments.Add(new OCRFragment(text, x, y, width, height, type));
 }