matrice 1.0.99257__py3-none-any.whl → 1.0.99259__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of matrice might be problematic. Click here for more details.
- matrice/deploy/utils/post_processing/usecases/fire_detection.py +18 -11
- {matrice-1.0.99257.dist-info → matrice-1.0.99259.dist-info}/METADATA +1 -1
- {matrice-1.0.99257.dist-info → matrice-1.0.99259.dist-info}/RECORD +6 -6
- {matrice-1.0.99257.dist-info → matrice-1.0.99259.dist-info}/WHEEL +0 -0
- {matrice-1.0.99257.dist-info → matrice-1.0.99259.dist-info}/licenses/LICENSE.txt +0 -0
- {matrice-1.0.99257.dist-info → matrice-1.0.99259.dist-info}/top_level.txt +0 -0
@@ -47,7 +47,14 @@ class FireSmokeConfig(BaseConfig):
|
|
47
47
|
default_factory=lambda: ['fire']
|
48
48
|
)
|
49
49
|
|
50
|
-
alert_config: Optional[AlertConfig] =
|
50
|
+
alert_config: Optional[AlertConfig] = field(
|
51
|
+
default_factory=lambda: AlertConfig(
|
52
|
+
count_thresholds={"fire": 0},
|
53
|
+
alert_type=["email"],
|
54
|
+
alert_value=["FIRE_INFO@matrice.ai"],
|
55
|
+
alert_incident_category=["FIRE-ALERT"]
|
56
|
+
)
|
57
|
+
)
|
51
58
|
|
52
59
|
|
53
60
|
time_window_minutes: int = 60
|
@@ -192,15 +199,15 @@ class FireSmokeUseCase(BaseProcessor):
|
|
192
199
|
frame_number = start_frame
|
193
200
|
|
194
201
|
# Step 7: alerts
|
195
|
-
alert_config
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
202
|
+
if config.alert_config is None:
|
203
|
+
config.alert_config = field(
|
204
|
+
default_factory=lambda: AlertConfig(
|
205
|
+
count_thresholds={"fire": 0},
|
206
|
+
alert_type=["email"],
|
207
|
+
alert_value=["FIRE_INFO@matrice.ai"],
|
208
|
+
alert_incident_category=["FIRE-ALERT"]
|
209
|
+
)
|
210
|
+
)
|
204
211
|
print("-----------------------------------------------")
|
205
212
|
print(config.confidence_threshold)
|
206
213
|
print(config.fire_smoke_categories)
|
@@ -208,8 +215,8 @@ class FireSmokeUseCase(BaseProcessor):
|
|
208
215
|
print(config.target_categories)
|
209
216
|
print(config.threshold_area)
|
210
217
|
print(config.alert_config)
|
211
|
-
print(config.alert_config.count_thresholds)
|
212
218
|
print(config.alert_config.alert_type)
|
219
|
+
print(config.alert_config.count_thresholds)
|
213
220
|
print(config.alert_config.alert_value)
|
214
221
|
print(config.alert_config.alert_incident_category)
|
215
222
|
print("-----------------------------------------------")
|
@@ -182,7 +182,7 @@ matrice/deploy/utils/post_processing/usecases/face_emotion.py,sha256=eRfqBdryB0u
|
|
182
182
|
matrice/deploy/utils/post_processing/usecases/face_recognition.py,sha256=T5xAuv6b9OrkmTmoXgZs4LZ5XUsbvp9xCpeLBwdu7eI,40231
|
183
183
|
matrice/deploy/utils/post_processing/usecases/fashion_detection.py,sha256=f9gpzMDhIW-gyn46k9jgf8nY7YeoqAnTxGOzksabFbE,40457
|
184
184
|
matrice/deploy/utils/post_processing/usecases/field_mapping.py,sha256=JDwYX8pd2W-waDvBh98Y_o_uchJu7wEYbFxOliA4Iq4,39822
|
185
|
-
matrice/deploy/utils/post_processing/usecases/fire_detection.py,sha256=
|
185
|
+
matrice/deploy/utils/post_processing/usecases/fire_detection.py,sha256=JT53juDT4bjpyXxH3bSC_vYiAbdt1PWjrbtr2dTvtRE,47993
|
186
186
|
matrice/deploy/utils/post_processing/usecases/flare_analysis.py,sha256=-egmS3Hs_iGOLeCMfapbkfQ04EWtZx97QRuUcDa-jMU,45340
|
187
187
|
matrice/deploy/utils/post_processing/usecases/flower_segmentation.py,sha256=4I7qMx9Ztxg_hy9KTVX-3qBhAN-QwDt_Yigf9fFjLus,52017
|
188
188
|
matrice/deploy/utils/post_processing/usecases/gas_leak_detection.py,sha256=KL2ft7fXvjTas-65-QgcJm3W8KBsrwF44qibSXjfaLc,40557
|
@@ -243,8 +243,8 @@ matrice/deployment/camera_manager.py,sha256=e1Lc81RJP5wUWRdTgHO6tMWF9BkBdHOSVyx3
|
|
243
243
|
matrice/deployment/deployment.py,sha256=HFt151eWq6iqIAMsQvurpV2WNxW6Cx_gIUVfnVy5SWE,48093
|
244
244
|
matrice/deployment/inference_pipeline.py,sha256=6b4Mm3-qt-Zy0BeiJfFQdImOn3FzdNCY-7ET7Rp8PMk,37911
|
245
245
|
matrice/deployment/streaming_gateway_manager.py,sha256=ifYGl3g25wyU39HwhPQyI2OgF3M6oIqKMWt8RXtMxY8,21401
|
246
|
-
matrice-1.0.
|
247
|
-
matrice-1.0.
|
248
|
-
matrice-1.0.
|
249
|
-
matrice-1.0.
|
250
|
-
matrice-1.0.
|
246
|
+
matrice-1.0.99259.dist-info/licenses/LICENSE.txt,sha256=2bm9uFabQZ3Ykb_SaSU_uUbAj2-htc6WJQmS_65qD00,1073
|
247
|
+
matrice-1.0.99259.dist-info/METADATA,sha256=pa-EmGjvAfSOxIU1ks1fsx65d5xR1gh6e4eJUWL0zQM,14624
|
248
|
+
matrice-1.0.99259.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
249
|
+
matrice-1.0.99259.dist-info/top_level.txt,sha256=P97js8ur6o5ClRqMH3Cjoab_NqbJ6sOQ3rJmVzKBvMc,8
|
250
|
+
matrice-1.0.99259.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|