C# Класс GPS.Data.OcrData

OcrData implements a singleton that provides access to the photo and corresponding text obtained from OCR conversion. It inherits from ModelBase which means that interested parties can subscribe to its PropertyChanged. It also means that references to the singleton instance of type OcrData can be used in data binding syntax in XAML files.
Наследование: GPS.Utils.ModelBase
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
GetWordCount ( ) : int

Determines the total word count from all text blocks stored in the OCR conversion result.

SetOcrResult ( List ocrResultList ) : void

Sets the OCR conversion result.

Приватные методы

Метод Описание
OcrData ( ) : System

Описание методов

GetWordCount() публичный Метод

Determines the total word count from all text blocks stored in the OCR conversion result.
public GetWordCount ( ) : int
Результат int

SetOcrResult() публичный Метод

Sets the OCR conversion result.
public SetOcrResult ( List ocrResultList ) : void
ocrResultList List /// The OCR conversion result. ///
Результат void