|
There is one public namespace in ABCocr. You can reference it
using the following directives.
[C#]
using WebSupergoo.ABCocr3;
[Visual Basic]
Imports WebSupergoo.ABCocr3
The ABCocr3 namespace contains the classes you will use for
OCR.
There is an OCR class which provides methods for assigning
images to be processed. The results come back as a Page object
which contains a list of Word objects. Each Word object contains a
list of Blob objects which, broadly speaking, correspond to
characters. All these objects have text and bounds so that you can
work out where they are in the image.
|