1

How to identify and separate the one table block to multiple table blocks with C# ?

My idea would be recognizing table headers and logically try and split table blocks. Is there any better way to separate tables ? also, Is there a way to draw new table blocks and regions in a new FRPage with data of existing blocks ?

Results of image recognition with two different params with FineReader SDK 12

Sakthivel
  • 1,890
  • 2
  • 21
  • 47

1 Answers1

0

I would suggest the following way:

  1. Process all pixel lines in your image one by one
  2. In case if there are only white pixels in the certain line, count this line as custom table separator
  3. Divide your page into a few custom analysis blocks by the custom table separators
  4. Call AnalyzeRegion Method of the FRPage Object for each custom analysis block
  5. Call FRPage.Recognize
Nadia Solovyeva
  • 207
  • 1
  • 7