OcrLine 类

定义

表示 OCR 引擎识别并作为 OcrResult 的一部分返回的单行文本。

public ref class OcrLine sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class OcrLine final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public sealed class OcrLine
Public NotInheritable Class OcrLine
继承
Object Platform::Object IInspectable OcrLine
属性

Windows 要求

设备系列
Windows 10 (在 10.0.10240.0 - for Xbox, see UWP features that aren't yet supported on Xbox 中引入)
API contract
Windows.Foundation.UniversalApiContract (在 v1.0 中引入)

注解

调用 OcrEngine 类的 RecognizeAsync 方法时,该方法将返回一个 OcrResult 对象。 OcrResult 包含 OcrLine 对象的集合,可通过 OcrResultLines 属性访问这些对象。 每个 OcrLine 对象都包含一个 OcrWord 对象的集合,可通过每个 OcrLineWords 属性访问这些对象。

属性

Text

获取已识别行的文本。

Words

获取 OcrWord 对象的集合,这些对象表示 RecognizeAsync 方法在当前文本行中检测到的单词。

适用于