Difference between revisions of "OCR service"

From 1Archive help
Jump to: navigation, search
m (Nele.scherrens moved page Appendix: OCR Service to OCR service)
(Web-service)
Line 1: Line 1:
  
== Web-service ==
 
  
For each request to the web-service, user credentials should be passed.
+
==Webservice==
 +
<br/>
 +
'''URL''': https://ocr.onea.be/WS
  
GetUserInfo
+
<br/>{{info|For each request to the webservice, user credentials should be passed.}}<br/>
  
Fetch the user information, such as:
+
===GetUserInfo===
  
- Number of OCR actions per OCR type
+
Fetches the user information, such as:
  
- Number of available credits per OCR type
+
* Number of OCR actions per OCR type
 +
* Number of available credits per OCR type
 +
* Allowed OCR types
  
- Allowed OCR types
+
'''Parameters''': None.
  
Parameters: None.
+
'''Returns''': XML schema with the user information.
  
Return: XML schema with the user information.
 
  
'''PostDocument'''
+
===PostDocument===
  
 
Post a new document to the OCR service, which should be sent to the OCR engine.
 
Post a new document to the OCR service, which should be sent to the OCR engine.
  
Parameters: Base64 encoded document or upload id.
+
'''Parameters''': Base64 encoded document or upload id.
  
Return: XML schema with the unique key of the document in the OCR service.
+
'''Returns''': XML schema with the unique key of the document in the OCR service.
  
  
'''GetDocumentStatus'''
+
===GetDocumentStatus===
  
 
Check the status of a certain document in the OCR service.
 
Check the status of a certain document in the OCR service.
  
Parameters: Unique key of a document in the OCR service.
+
'''Parameters''': Unique key of a document in the OCR service.
  
Return: XML schema with the status of the document in the OCR service.
+
'''Returns''': XML schema with the status of the document in the OCR service.
  
'''GetDocumentResult'''
+
 
 +
===GetDocumentResult===
  
 
Get the resulting data of the OCR process, based on the document id in the OCR service.
 
Get the resulting data of the OCR process, based on the document id in the OCR service.
  
Parameters: Unique key of a document in the OCR service.
+
'''Parameters''': Unique key of a document in the OCR service.
 
 
Return: File with the OCR result (PDF with embedded data, XML, TXT, …).
 
  
 +
'''Returns''': File with the OCR result (PDF with embedded data, XML, TXT, …).
 +
<br/>
 +
<br/>
 
<code>
 
<code>
 
<OCRRESULT xmlns:abbyy="http://www.abbyy.com/FineReader_xml/FineReader10-schema-v1.xml">
 
<OCRRESULT xmlns:abbyy="http://www.abbyy.com/FineReader_xml/FineReader10-schema-v1.xml">

Revision as of 11:05, 28 March 2018


1 Webservice


URL: https://ocr.onea.be/WS


Info.png For each request to the webservice, user credentials should be passed.

1.1 GetUserInfo

Fetches the user information, such as:

  • Number of OCR actions per OCR type
  • Number of available credits per OCR type
  • Allowed OCR types

Parameters: None.

Returns: XML schema with the user information.


1.2 PostDocument

Post a new document to the OCR service, which should be sent to the OCR engine.

Parameters: Base64 encoded document or upload id.

Returns: XML schema with the unique key of the document in the OCR service.


1.3 GetDocumentStatus

Check the status of a certain document in the OCR service.

Parameters: Unique key of a document in the OCR service.

Returns: XML schema with the status of the document in the OCR service.


1.4 GetDocumentResult

Get the resulting data of the OCR process, based on the document id in the OCR service.

Parameters: Unique key of a document in the OCR service.

Returns: File with the OCR result (PDF with embedded data, XML, TXT, …).

<OCRRESULT xmlns:abbyy="http://www.abbyy.com/FineReader_xml/FineReader10-schema-v1.xml">

   <TEXTS>
       <TEXT l="2140" t="15" r="2246" b="40">000529</TEXT>
       <TEXT l="273" t="294" r="635" b="337">ES FINANCE</TEXT>
       <TEXT l="273" t="349" r="723" b="377">BNP PARIBAS GROUP</TEXT>
       <TEXT l="1405" t="524" r="1805" b="541">1225/1307-1/1-8162660001 -1277-001458</TEXT>
       <TEXT l="1476" t="679" r="1664" b="710">ONEA NV</TEXT>
       <TEXT l="1476" t="725" r="2198" b="756">OTTERGEMSESTEENWEG-ZUID 731</TEXT>
       <TEXT l="1475" t="772" r="1695" b="804">9000 </TEXT>
       …
       <TEXT l="1407" t="2187" r="1559" b="2216">Papier van</TEXT>
       <TEXT l="1313" t="2220" r="1653" b="2243">verantwoorde herkomst</TEXT>
       <TEXT l="1343" t="2274" r="1624" b="2305">FSC® C011145</TEXT>
   </TEXTS>
   <BARCODES/>

</OCRRESULT>