IOcrProvider
Interface
Contract for OCR engines that extract text from images for search, selection, or analysis.
Definition
Namespace:Telerik.Windows.Documents.Ocr
Assembly:Telerik.Windows.Documents.Core.dll
Syntax:
C#
public interface IOcrProvider
Derived Classes:
Properties
Gets or sets the parsing granularity used by the OCR engine (word- or line-level).
C#
OcrParseLevel ParseLevel { get; set; }
Methods
Extract text with word-level bounding boxes, returning a map of regions to recognized strings.
C#
Dictionary<Rectangle, string> GetTextFromImage(byte[] imageBytes)
The bytes of the image.
Returns:Words with corresponding bounding rectangles