你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

DocumentLine 类

一个内容行对象,表示在文档的单行中找到的内容。

继承
builtins.object
DocumentLine

构造函数

DocumentLine(**kwargs: Any)

方法

from_dict

将 DocumentLine 形状中的 dict 转换为模型本身。

get_words

获取在此 DocumentLine 的跨度中找到的单词。

to_dict

返回 DocumentLine 的 dict 表示形式。

from_dict

将 DocumentLine 形状中的 dict 转换为模型本身。

from_dict(data: Dict) -> DocumentLine

参数

名称 说明
data
必需

DocumentLine 形状的字典。

返回

类型 说明

DocumentLine

get_words

获取在此 DocumentLine 的跨度中找到的单词。

get_words() -> Iterable[DocumentWord]

返回

类型 说明
<xref:iterable>[DocumentWord]

iterable[DocumentWord]

to_dict

返回 DocumentLine 的 dict 表示形式。

to_dict() -> Dict

返回

类型 说明

dict

属性

content

包含元素的串联内容,按读取顺序排列。

content: str

polygon

边界线的多边形。

polygon: Sequence[Point]

spans

阅读顺序串联内容的行的位置。

spans: List[DocumentSpan]