|
|
|
|
|
OCRDetectTextArea (Function) In french: OCRDétecteZoneTexte Returns all text areas of an image without reading the text. A text area is defined by a polygon. MonImage is Image
MonTableauDePolygones is array of Polygon
MonTableauDePolygones = OCRDetectTextArea(MonImage)
Syntax
<Result> = OCRDetectTextArea(<Image to use>)
<Result>: Array of Polygon variables Array of Polygon variables corresponding to the different text areas. <Image to use>: Control name, Image variable, character string Image in which the text areas must be detected. This image can correspond to: - an Image control,
- an Image variable,
- an Image Memo item,
- the path of an image file,
- the path of PDF file.
Please note: this file must contain a single page only.. Reminder: you can extract a page from a PDF file into an image using the PDFExtractPage function. This image can be processed by OCRDetectTextArea.
Remarks  The Legacy engine is used. Custom models (.traineddata files) must be compatible with this engine.  Legacy and LSTM engines are available for WINDEV applications (Windows and Linux). - The .traineddata models are required, even if the text is not read.
- To get the best results possible, it is recommended to:
- Use a high-resolution image.
- Crop the image around the text if possible (avoid unnecessary areas).
- Limit text skew. If the image is slightly skewed, OCR may be able to detect the text, but the quality will be affected.
Skewed images can be read. - Limit the number of models/languages used.
- If the selected area is too small, it will not be possible to retrieve the corresponding text (for example, an area reduced to a single number or letter).
- Note that, if the image used corresponds to an Image control, the source image will be directly manipulated. Therefore, the changes made in the Image control (image size for example) will not be taken into account. To apply these changes, it is necessary to save the image.
- Note that, if the image used (via an Image control or not) is a PDF file, its quality will be set to 300 DPI.
- OCR can only detect printed text. It cannot recognize handwritten text.
- "White" text is not recognized.
Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|