POST api/OCR/File/Result
Handles the OCR file result submission.
Request Information
URI Parameters
None.
Body Parameters
The OCR result data to be processed.
OcrResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | string |
None. |
|
| StatusCode | integer |
None. |
|
| Message | string |
None. |
|
| OcrClient | string |
None. |
|
| ProcessingGuid | string |
None. |
|
| Confidence | decimal number |
None. |
|
| DeskewAngle | decimal number |
None. |
|
| ImageWidth | integer |
None. |
|
| ImageHeight | integer |
None. |
|
| Language | string |
None. |
|
| PageOrientation | string |
None. |
|
| Text | string |
None. |
|
| WordCount | integer |
None. |
|
| LineCount | integer |
None. |
|
| RegionCount | integer |
None. |
|
| Words | Collection of OcrWord |
None. |
Request Formats
application/json, text/json
Sample:
{
"Status": "sample string 1",
"StatusCode": 2,
"Message": "sample string 3",
"OcrClient": "sample string 4",
"ProcessingGuid": "sample string 5",
"Confidence": 6.1,
"DeskewAngle": 7.1,
"ImageWidth": 8,
"ImageHeight": 9,
"Language": "sample string 10",
"PageOrientation": "sample string 11",
"Text": "sample string 12",
"WordCount": 13,
"LineCount": 14,
"RegionCount": 15,
"Words": [
{
"Word": "sample string 1",
"Confidence": 2.1,
"Height": 3,
"Width": 4,
"X": 5,
"Y": 6
},
{
"Word": "sample string 1",
"Confidence": 2.1,
"Height": 3,
"Width": 4,
"X": 5,
"Y": 6
}
]
}
application/bson
Sample:
Binary JSON content. See http://bsonspec.org for details.
Response Information
Resource Description
An representing the result of the operation.
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.
application/bson
Sample:
Binary JSON content. See http://bsonspec.org for details.