Link to home
Start Free TrialLog in
Avatar of rp
rpFlag for Portugal

asked on

Ocr .net library

Hi,

Someone can suggest some .net ocr free library, or any paid at a reasonable price?

best regards
Avatar of Chinmay Patel
Chinmay Patel
Flag of India image

Hi,

Have you seen the Asprise C# .Net OCR SDK?
http://asprise.com/royalty-free-library/c%23-sharp.net-ocr-source-code-examples-demos.html

using asprise_ocr_api;

AspriseOCR.SetUp();
AspriseOCR ocr = new AspriseOCR();
ocr.StartEngine("eng", AspriseOCR.SPEED_FASTEST);

string s = ocr.Recognize("img.jpg", -1, -1, -1, -1, -1,
  AspriseOCR.RECOGNIZE_TYPE_ALL, AspriseOCR.OUTPUT_FORMAT_PLAINTEXT);
Console.WriteLine("OCR Result: " + s);
// process more images here ...

ocr.StopEngine();

Open in new window


As long as the pricing is concerned, reasonable is also a relative term. Do you have specific number in mind?

Regards,
Chinmay.
ASKER CERTIFIED SOLUTION
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
And Aspose also always have good products: https://products.aspose.com/ocr/net
Avatar of rp

ASKER

Hi,

Until $1 000 / $1 200.

best regards
I think you have enough options now :) Let me know if you still face any issues with deciding the right component.
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rp

ASKER

Great.

Thank´s Éric
Avatar of rp

ASKER

Hi Éric,

In your article "Character recognition from a .Net application", the source code is incorrect. The source code belongs "Generate and consume QR codes in .Net applications" article.

best regards
If you refresh the web page and use the download link, you will get the correct file.

thanks for letting me know!