forked from intel-iot-devkit/python-cv-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil_types.py
43 lines (32 loc) · 871 Bytes
/
util_types.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import typing
from dataclasses import dataclass, astuple
from dataclasses_json import DataClassJsonMixin
Rotation = typing.Literal['ROTATE_90_CLOCKWISE',
'ROTATE_90_COUNTERCLOCKWISE', 'ROTATE_180'] | None
Point = tuple[int, int]
Vector = tuple[int, int]
Line = tuple[int, int, int, int] # x1,y1,x2,y2
Circle = tuple[int, int, int] # x,y,r
@dataclass
class Rect(DataClassJsonMixin):
x: int
y: int
width: int
height: int
def __iter__(self):
return iter(astuple(self))
@dataclass
class Range(DataClassJsonMixin):
min: float
max: float
def __iter__(self):
return iter(astuple(self))
@dataclass
class GaugeOption(DataClassJsonMixin):
name: str
rect: Rect
angles: Range
values: Range
location: str | None = None
unit: str | None = None
rotation: Rotation = None