RoiBox
Description
Defines the bounding box.
Structure Definition
1 2 3 4 5 6 | class RoiBox: def __init__(self): self.x0 = None self.y0 = None self.x1 = None self.y1 = None |
Parameters
Parameter |
Type |
Description |
|---|---|---|
x0 |
float |
Horizontal coordinate of the upper left corner. |
y0 |
float |
Vertical coordinate of the upper left corner. |
x1 |
float |
Horizontal coordinate of the lower right corner. |
y1 |
float |
Vertical coordinate of the lower right corner. |
Parent topic: Process Orchestration Data Class