Technology: our engine is based on three distinct classifiers using different methods: artificial neural network, features extraction, statistycal matrix matching. An expert system, using fuzzy rules, reconciles all the outputs obtaining the best match.
Speed: speed is linked to cpu speed. Using Pentium processors, time performance are usually included between 30 and 100 CPS.
Input: monochrome images (like memory DIB handles, Device Independent Bitmap) at resolution of 200 or more DPI are accepted in input. Better results can be obtained using grayscale images with our dynamic thresholding SDK.
Output: output is made by recognized characters ASCII codes, by confidence level and by coordinates of each area containing characters.
Platform: all of the Windows 95/98/NT/Millennium/2000/Xp platforms are supported.
Packaging: the engine is packaged in DLL format. The total size is 500 KB. No extra file is required.
Here is a sample of E13B codeline image, automatically readable with 100%
accuracy:

To test this library you can download a demo application (500 KB) that allows you to recognize codelines from your images: please give us your feedback and your comments after the test!
Here is the source code sample that uses our engine:
// Demo user function
long RecognizeMyCodeline(long CodelineDIB)
{
// Declare local variables
long Session,Error,Lines,LineLen;
char Chars[1024]; // We expect to have codelines with less then 1024 chars !
single Confidences[1024];
rect Rects[1024]
// Init the library in evaluation mode
Error=E13B_Init("demo","demo", &Session);
// Check if any error occurred
if (Error!=E13B_OK)
{
// Perform the recognition
Error=E13B_Read(Session, CodelineDIB, TRUE);
// Check if any error occurred
if (Error!=E13B_OK)
{
// Retrieve the codeline length
E13B_ResultLineLength(Session,0,&LineLen);
// ===============================================================
// You could allocate here memory for Chars, Confidences and Rects
// using LineLen value instead to use fixed size buffers...
// ===============================================================
// Retrieve the codeline chars
E13B_ResultLineChars(Session,0,&Chars);
// Retrieve the codeline char confidences...if required
E13B_ResultLineConfidences(Session,0,&Confidences);
// Retrieve the codeline char rects...if required
E13B_ResultLineRects(Session,0,&Rects);
// =============================================
// Add here your code to use the recognized data
// =============================================
}
// Deinitialize the library
E13B_Done(Session);
}
return (Error);
}
Pricing & Ordering Info
The price for this product is EUR 2.000,00. On sales page you can find a price list for royalties.
You can order on-line in our e-commerce store or contacts us.
Evaluation Version
You can download an evaluation version of this product for
Visual Basic,
Visual C++ or
Delphi
More Info
If you need further information about this product please use the contacts page.