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
파일 보기 프로젝트 열기: ProjPossibility/CSUN-MobileMapMagnifier 1 사용 예제들

공개 메소드들

메소드 설명
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