OPTICAL CHARACTER RECOGNITION FROM THE MICROSOFT COGNITIVE API
Hi Trailblazer Community, From a long back i was planning to write blog on optical character recognition but i was not getting time for it. So what is the Meaning of the OCR :- OCR ( optical character recognition ) is the recognition of printed or written text characters by a computer. This involves photoscanning of the text character-by-character, analysis of the scanned-in image, and then translation of the character image into character codes. I have done the OCR Reader work with Google Cloud Vision Api & Microsoft Cognitive Api. Microsoft Cognitive Api : From Microsoft Cognitive Api i have used the image url for scanning image. We can do OCR from base64 code also. Google Cloud Vision Api : From Google Cloud Vision Api i have done ocr using the base64 code. For R&D purpose i have created the account for Microsoft Cognitive Api . After creating account you will get the authentication id and authentication token. //Apex Class : public with s...