你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
FormLine 类
表示提取的文本行的 对象。
版本 v2.1 中的新增功能: 外观 属性、 对to_dict 和 from_dict 方法的支持
- 继承
-
azure.ai.formrecognizer._models.FormElementFormLine
构造函数
FormLine(**kwargs: Any)
方法
from_dict |
将 FormLine 形状中的听写转换为模型本身。 |
to_dict |
返回 FormLine 的听写表示形式。 |
from_dict
将 FormLine 形状中的听写转换为模型本身。
from_dict(data: Dict) -> FormLine
参数
返回
FormLine
返回类型
to_dict
属性
appearance
表示线条外观的 对象。
appearance: TextAppearance
bounding_box
一个包含 4 个点的列表,表示四边边界框,该框概述了文本。 这些点按顺时针顺序列出:左上、右上、右下、左下。 图像单位以像素为单位,PDF 单位以英寸为单位。
bounding_box: List[Point]
kind
对于 FormLine,这是“line”。
kind: str
page_number
包含此内容的页面的从 1 开始的编号。
page_number: int
text
行的文本内容。
text: str
words
构成行的单词列表。
words: List[FormWord]