Versions Compared

Key

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

...

Code Block
languagejs
themeEclipse
titleImageProperties Sample JSON Document
//  Input CSV Data: fsa1997018564#True#True#139.37#42.41
{
	"loc_id": "fsa1997018564",
	"stryker_hole_presence": true,
	"border_presence": true,
	"mean_grayscale_value": 139.37,
	"std_grayscale_value": 42.41
}

LocationInfo

Sl. No.Database Column NameJSON Metadata Field NameField DescriptionRemarks
1idloc_idLOC IndexString;
2latlatitudeLatitude coordinateFloat;
3longlongitudeLongitude coordinateFloat;
4statestateAbbreviation or state name (if abbreviation not found) or "United States" if no. Other country names are kept as it is.String;
5citycityCity name, when availableString;
6countycountyCounty name, when available (this value is mostly unavailable)String;
Code Block
languagejs
themeEclipse
titleLocationInfo Sample JSON Document
//  Input CSV Data: fsa1997018591#40.106639#-83.767142#OH#Urbana#nop
{
	"loc_id": "fsa1997018591",
	"latitude": 40.106639,
	"longitude": -83.767142,
	"state": "OH",
	"city": "Urbana",
	"county": null
}

OCRInfo

Sl. No.Database Column NameJSON Metadata Field NameField DescriptionRemarks
1idloc_idLOC IndexString;
2ocr_predoverall_ocr_prediction

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; nop means no text was found; F means after finding possible text regions, it was ruled out not to be text;

3scoresocr_scoresPrediction 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_sumnum_text_predictionsA count of number of 1's found across text box score sets Integer;
5box_cntnum_text_boxes

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

Integer; box_sum is the count of '1's while box_cnt is the count of 'T's. 

6box_txtocr_results

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

String;
7box_locsocr_text_boxes

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;

...