Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is this same as your online OCR? #2

Open
9tontruck opened this issue Feb 5, 2016 · 1 comment
Open

Is this same as your online OCR? #2

9tontruck opened this issue Feb 5, 2016 · 1 comment

Comments

@9tontruck
Copy link

Hi,

I couldn't have it working in my computer yet but just looked through your code.
It seems that it just uses Tesseract-OCR's basic function to detect texts. Which is:

using (var engine = new TesseractEngine(_pathToTestData, Language, EngineMode.Default))
{
using (var img = Pix.LoadFromFile(pathToImage))
{
using (var page = engine.Process(img))
{
var resultText = page.GetText();
if (!String.IsNullOrEmpty(resultText))
return resultText;
}
}
}

I know about this code and it wasn't very great. However your online OCR (https://ocr.space/) works really great. How come they are different? Are they really using same code?

I guess they are using different tessdata. Would you be able to share your tessdata too?

@A9T9
Copy link
Owner

A9T9 commented Feb 6, 2016

You are right, both projects use a different OCR engine. This blog posts explains it: http://blog.a9t9.com/2015/09/ocr-api.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants