Versions Compared

Key

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

...

Code Block
languagejs
themeEclipse
titleOCRInfo Sample JSON Document
//  Input CSV Data: fsa1997000226#T#1,0.49,0.51;1,0.06,0.94#2#2#Ironnzny;GARAGE#703,264,71,60;713,277,55,14
{
	"loc_id": "fsa1997000226",
	"overall_ocr_prediction": "true" // other values are false, nop
	"ocr_scores": 
	[
		{
			"prediction_bit": 1,
			"prediction_score": 0.51
		},
		{
			"prediction_bit": 1,
			"prediction_score": 0.94
		}
	],
	"num_text_predictions": 2,
	"num_text_boxes": 2,
	"ocr_results": ["Ironnzny", "GARAGE"],
	"ocr_text_boxes": 
	[
		{
			"x": 703,
			"y": 264,
			"width": 71,
			"height": 60
		},
		{

			"x": 703713,
			"y": 264277,
			"width": 7155,
			"height": 60
		}
	]
	
}

SubjectInfo

...