forked from snowzach/doods2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
odrpc.py
87 lines (75 loc) · 2.16 KB
/
odrpc.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import json
from dataclasses import field, asdict
from pydantic.dataclasses import dataclass
from typing import Optional
from typing import Dict
from typing import List
@dataclass
class DetectRegion:
top: float
left: float
bottom: float
right: float
detect: Dict[str, float]
covers: bool = False
id: Optional[str] = None
@dataclass
class DetectRequest:
id: Optional[str] = None
detector_name: Optional[str] = None
image: Optional[str] = ""
throttle: Optional[float] = 0.0
data: str = ""
preprocess: List[str] = field(default_factory=list)
detect: Dict[str, float] = field(default_factory=dict)
regions: List[DetectRegion] = field(default_factory=list)
@dataclass
class MqttDetectRequest(DetectRequest):
separate_detections: Optional[bool] = False
crop: Optional[bool] = False
binary_images: Optional[bool] = False
@dataclass
class Detector:
name: str
type: str
model: str
labels: List[str] = field(default_factory=list)
width: int = 0
height: int = 0
def asdict(self):
return asdict(self)
@dataclass
class DetectorsResponse:
detectors: List[Detector] = field(default_factory=list)
def asdict(self, include_none=True):
ret = asdict(self)
return ret if include_none else clean_none(ret)
@dataclass
class Detection:
region_id: Optional[str] = None
top: float = 0.0
left: float = 0.0
bottom: float = 0.0
right: float = 0.0
label: str = ""
confidence: float = 0.0
image: Optional[str] = None
def asdict(self, include_none=True):
ret = asdict(self)
return ret if include_none else clean_none(ret)
@dataclass
class DetectResponse:
id: Optional[str] = None
image: Optional[str] = None
detections: List[Detection] = field(default_factory=list)
error: Optional[str] = None
def asdict(self, include_none=True):
ret = asdict(self)
return ret if include_none else clean_none(ret)
def clean_none(d):
for key, value in list(d.items()):
if value is None:
del d[key]
elif isinstance(value, dict):
clean_none(value)
return d # For convenience