-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feedback on SDK design/implementation.
- Loading branch information
Showing
3 changed files
with
15 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2080,6 +2080,7 @@ class BoundingRegion(object): | |
:ivar list[~azure.ai.formrecognizer.Point] bounding_box: | ||
A list of 4 points representing the quadrilateral bounding box | ||
that outlines the text. The points are listed in clockwise | ||
##### [Paul] relative to the text orientation. | ||
order: top-left, top-right, bottom-right, bottom-left. | ||
Units are in pixels for images and inches for PDF. | ||
:ivar int page_number: | ||
|
@@ -2133,6 +2134,11 @@ def from_dict(cls, data): | |
) | ||
|
||
|
||
##### [Paul] Suggest naming this DocumentContentElement. | ||
This comment has been minimized.
Sorry, something went wrong.
catalinaperalta
Member
|
||
##### Propose introducing DocumentPageElement for line, blocks; | ||
##### and DocumentStructureElement for table, keyValuePair, fields, entities, etc. | ||
##### [Paul] I was expecting to see Span and Confidence here. | ||
##### [Paul] Having Content here is good. But since SelectionMark uses State, it may be useful to hide it from IntelliSense there. | ||
class DocumentElement(object): | ||
"""A DocumentElement. | ||
|
Do you have a link to the documentation we should use?