Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Sl. No.Database Column NameField DescriptionRemarks
1idLOC IndexString;
2ocr_pred

Overall prediction of whether or not text is present in image. 'nop' means OCR found nothing. Where if any one box predicted text then the final prediction is set to T.

String;

What is the difference between nop and F?

nop means no text was found; F means after finding possible text regions, it was ruled out not to be text;

3scoresPrediction scores. A string that consists of sets of 3 numbers (separated by semicolon) where, for each OCR text box found, a 0/1 classification value indicating no-text/text predicted, 2 floats indicating classification score for no-text/textString;
4box_sumA count of number of 1's found across text box score sets Integer;
5box_cnt

Number of text boxes. Note that box_sum / box_cnt is another possible score instead of the T/F above.

Integer; What is the difference between box_sum and is the count of '1's while box_cnt ?is the count of 'T's. 

6box_txt

Set of strings separated by semicolon. One string for each text box found in OCR process

String;
7box_locs

A string that consists of sets of 4 numbers (separated by semicolon) one set for each text box, where the numbers are upper left x coordinate, upper left y coordinate, box width, box height.

String;

...