Revolutionize your text extraction process with smartICR, a leading tool in the industry. Utilizing cutting-edge deep learning techniques in computer vision and natural language processing, the software is capable of accurately extracting text from images and videos in over 100 languages. Its use of an LSTM neural network allows for unparalleled performance in sequence prediction, making it impervious to repeated text within image sequences. Experience the efficiency and effectiveness of smartICR today.
Limitations
Max File Size is 10 MB
Max requests per second: 1
Processing Time: Up to the number of characters in an image
//note that running this code directly from the local file system might not work due to security restrictions.<inputtype="file"id="fileInput"><buttonid="uploadButton">Upload</button><script>document.getElementById('uploadButton').addEventListener('click', () => {consturl='https://use.laigo.io/api/FileUpload/v1/Upload/smartICR';consttoken='Bearer my-email-here';constemail='my-email-here';constoutputFormats='PDF,TEXT';constlanguageHint='EN';constfileInput=document.getElementById('fileInput');constfile=fileInput.files[0];constformData=newFormData();formData.append('email', email);formData.append('outputFormats', outputFormats);formData.append('languageHint', languageHint);formData.append('file', file);constxhr=newXMLHttpRequest();xhr.open('POST', url);xhr.setRequestHeader('Authorization', token);xhr.onload= () => {if (xhr.status ===200) {console.log(xhr.responseText); } else {console.error('Request failed:',xhr.statusText); } };xhr.onerror= () => {console.error('Request failed'); };xhr.send(formData); });</script>
First you need to have a document sample that you want to use with smartICR. It can be any document type such as: invoice, receipt, letter, email etc. For e.g you can use the invoice sample below:
Inorder to use our smartICR tool you need to have an API key which can be generated from here.
If you don’t have an account, first you need to set up your account then you can generate the API key. Create an account here.
After you have generated your API key, then you can use smartICR in any popular programming language, where you can find the code snippets here.
Run your code. You will receive a JSON response with the invoice details.