BoundingBox Model
BoundingBox Model documentation for Python SDK
Bounding box coordinates in page space.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| x1 | float | Left coordinate | |
| y1 | float | Top coordinate | |
| x2 | float | Right coordinate | |
| y2 | float | Bottom coordinate |
Example
from goodmem_client.models.bounding_box import BoundingBox
# TODO update the JSON string below
json = "{}"
# create an instance of BoundingBox from a JSON string
bounding_box_instance = BoundingBox.from_json(json)
# print the JSON string representation of the object
print(BoundingBox.to_json())
# convert the object into a dict
bounding_box_dict = bounding_box_instance.to_dict()
# create an instance of BoundingBox from a dict
bounding_box_from_dict = BoundingBox.from_dict(bounding_box_dict)↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK