matrice 1.0.99281__py3-none-any.whl → 1.0.99283__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.
- matrice/deploy/utils/post_processing/usecases/crop_weed_detection.py +19 -0
- matrice/deploy/utils/post_processing/usecases/fire_detection.py +2 -2
- {matrice-1.0.99281.dist-info → matrice-1.0.99283.dist-info}/METADATA +1 -1
- {matrice-1.0.99281.dist-info → matrice-1.0.99283.dist-info}/RECORD +7 -7
- {matrice-1.0.99281.dist-info → matrice-1.0.99283.dist-info}/WHEEL +0 -0
- {matrice-1.0.99281.dist-info → matrice-1.0.99283.dist-info}/licenses/LICENSE.txt +0 -0
- {matrice-1.0.99281.dist-info → matrice-1.0.99283.dist-info}/top_level.txt +0 -0
@@ -115,9 +115,14 @@ class CropWeedDetectionUseCase(BaseProcessor):
|
|
115
115
|
context=context)
|
116
116
|
if context is None:
|
117
117
|
context = ProcessingContext()
|
118
|
+
|
118
119
|
|
119
120
|
# Detect input format and store in context
|
120
121
|
input_format = match_results_structure(data)
|
122
|
+
|
123
|
+
# DEBUG
|
124
|
+
print(f"Detected input format: {input_format}")
|
125
|
+
|
121
126
|
context.input_format = input_format
|
122
127
|
context.confidence_threshold = config.confidence_threshold
|
123
128
|
|
@@ -151,6 +156,8 @@ class CropWeedDetectionUseCase(BaseProcessor):
|
|
151
156
|
self.smoothing_tracker = BBoxSmoothingTracker(smoothing_config)
|
152
157
|
processed_data = bbox_smoothing(processed_data, self.smoothing_tracker.config, self.smoothing_tracker)
|
153
158
|
|
159
|
+
# DEBUG:
|
160
|
+
print(f"Processed data after filtering and smoothing: {processed_data}")
|
154
161
|
|
155
162
|
# Advanced tracking (BYTETracker-like)
|
156
163
|
try:
|
@@ -234,6 +241,9 @@ class CropWeedDetectionUseCase(BaseProcessor):
|
|
234
241
|
|
235
242
|
# Build result object following the new pattern
|
236
243
|
|
244
|
+
# DEBUG:
|
245
|
+
print(f"Final aggregated summary: {agg_summary}")
|
246
|
+
|
237
247
|
result = self.create_result(
|
238
248
|
data={"agg_summary": agg_summary},
|
239
249
|
usecase=self.name,
|
@@ -449,6 +459,9 @@ class CropWeedDetectionUseCase(BaseProcessor):
|
|
449
459
|
# Prepare detections without confidence scores (as per eg.json)
|
450
460
|
detections = []
|
451
461
|
|
462
|
+
# DEBUG
|
463
|
+
print(f"Model detections: {counting_summary.get('detections', [])}")
|
464
|
+
|
452
465
|
for detection in counting_summary.get("detections", []):
|
453
466
|
detection_data = {
|
454
467
|
"category": detection.get("category"),
|
@@ -476,6 +489,9 @@ class CropWeedDetectionUseCase(BaseProcessor):
|
|
476
489
|
}
|
477
490
|
})
|
478
491
|
|
492
|
+
# DEBUG
|
493
|
+
print(f"Detections for tracking stats: {detections}")
|
494
|
+
|
479
495
|
# Generate human_text in expected format
|
480
496
|
human_text_lines = [f"Tracking Statistics:"]
|
481
497
|
human_text_lines.append(f"CURRENT FRAME @ {current_timestamp}")
|
@@ -510,6 +526,9 @@ class CropWeedDetectionUseCase(BaseProcessor):
|
|
510
526
|
reset_settings=reset_settings, start_time=high_precision_start_timestamp ,
|
511
527
|
reset_time=high_precision_reset_timestamp)
|
512
528
|
|
529
|
+
# DEBUG
|
530
|
+
print(f"Generated tracking stat: {tracking_stat}")
|
531
|
+
|
513
532
|
tracking_stats.append(tracking_stat)
|
514
533
|
return tracking_stats
|
515
534
|
|
@@ -645,7 +645,7 @@ class FireSmokeUseCase(BaseProcessor):
|
|
645
645
|
if len(self.id_timing_list)>0 and len(self.id_timing_list)>=5:
|
646
646
|
start_timestamp = self.id_timing_list[-1]
|
647
647
|
if last_ending_id==5:
|
648
|
-
alerts={
|
648
|
+
alerts=[{
|
649
649
|
"alert_type": getattr(config.alert_config, 'alert_type', ['Default']) if hasattr(config.alert_config, 'alert_type') else ['Default'],
|
650
650
|
"alert_id": "alert_"+'Event_Ended'+'_'+str(last_ending_id),
|
651
651
|
"incident_category": self.CASE_TYPE,
|
@@ -654,7 +654,7 @@ class FireSmokeUseCase(BaseProcessor):
|
|
654
654
|
"settings": {t: v for t, v in zip(getattr(config.alert_config, 'alert_type', ['Default']) if hasattr(config.alert_config, 'alert_type') else ['Default'],
|
655
655
|
getattr(config.alert_config, 'alert_value', ['JSON']) if hasattr(config.alert_config, 'alert_value') else ['JSON'])
|
656
656
|
}
|
657
|
-
}
|
657
|
+
}]
|
658
658
|
tracking_stats.append(alerts)
|
659
659
|
tracking_stats.append(self.create_incident(incident_id=self.CASE_TYPE+'_'+str(last_ending_id), incident_type=self.CASE_TYPE,
|
660
660
|
severity_level='info', human_text='Event Over', camera_info=camera_info, alerts=alerts, alert_settings=alert_settings,
|
@@ -173,7 +173,7 @@ matrice/deploy/utils/post_processing/usecases/child_monitoring.py,sha256=z3oymoq
|
|
173
173
|
matrice/deploy/utils/post_processing/usecases/color_detection.py,sha256=Z8-akjy8a7f8YyiOzXu_Zi1Km30v-TRrymDqQOPpJ_8,43277
|
174
174
|
matrice/deploy/utils/post_processing/usecases/color_map_utils.py,sha256=SP-AEVcjLmL8rxblu-ixqUJC2fqlcr7ab4hWo4Fcr_k,2677
|
175
175
|
matrice/deploy/utils/post_processing/usecases/concrete_crack_detection.py,sha256=pxhOH_hG4hq9yytNepbGMdk2W_lTG8D1_2RAagaPBkg,40252
|
176
|
-
matrice/deploy/utils/post_processing/usecases/crop_weed_detection.py,sha256=
|
176
|
+
matrice/deploy/utils/post_processing/usecases/crop_weed_detection.py,sha256=gJnglwmN_nDO5v4pnxZhIIbseSN8n2bInAN7Uwfjo_M,40565
|
177
177
|
matrice/deploy/utils/post_processing/usecases/customer_service.py,sha256=UWS83qxguyAyhh8a0JF5QH9DtKxO8I-gI2BPOjLPxBw,44642
|
178
178
|
matrice/deploy/utils/post_processing/usecases/defect_detection_products.py,sha256=blvo4wmak-wlvPSZOcmRsV1FoZSeGX_dUAX5A1WheBE,45949
|
179
179
|
matrice/deploy/utils/post_processing/usecases/distracted_driver_detection.py,sha256=rkyYHbmcYUAfKbmmKyKxHlk47vJ_fogHWKhQjrERsok,40316
|
@@ -183,7 +183,7 @@ matrice/deploy/utils/post_processing/usecases/face_emotion.py,sha256=eRfqBdryB0u
|
|
183
183
|
matrice/deploy/utils/post_processing/usecases/face_recognition.py,sha256=T5xAuv6b9OrkmTmoXgZs4LZ5XUsbvp9xCpeLBwdu7eI,40231
|
184
184
|
matrice/deploy/utils/post_processing/usecases/fashion_detection.py,sha256=f9gpzMDhIW-gyn46k9jgf8nY7YeoqAnTxGOzksabFbE,40457
|
185
185
|
matrice/deploy/utils/post_processing/usecases/field_mapping.py,sha256=JDwYX8pd2W-waDvBh98Y_o_uchJu7wEYbFxOliA4Iq4,39822
|
186
|
-
matrice/deploy/utils/post_processing/usecases/fire_detection.py,sha256=
|
186
|
+
matrice/deploy/utils/post_processing/usecases/fire_detection.py,sha256=LQkb9NXk6WAiHJfUlW0O9fuLq3HZQy7aBg4kD08APvg,49626
|
187
187
|
matrice/deploy/utils/post_processing/usecases/flare_analysis.py,sha256=-egmS3Hs_iGOLeCMfapbkfQ04EWtZx97QRuUcDa-jMU,45340
|
188
188
|
matrice/deploy/utils/post_processing/usecases/flower_segmentation.py,sha256=4I7qMx9Ztxg_hy9KTVX-3qBhAN-QwDt_Yigf9fFjLus,52017
|
189
189
|
matrice/deploy/utils/post_processing/usecases/gas_leak_detection.py,sha256=KL2ft7fXvjTas-65-QgcJm3W8KBsrwF44qibSXjfaLc,40557
|
@@ -244,8 +244,8 @@ matrice/deployment/camera_manager.py,sha256=e1Lc81RJP5wUWRdTgHO6tMWF9BkBdHOSVyx3
|
|
244
244
|
matrice/deployment/deployment.py,sha256=HFt151eWq6iqIAMsQvurpV2WNxW6Cx_gIUVfnVy5SWE,48093
|
245
245
|
matrice/deployment/inference_pipeline.py,sha256=6b4Mm3-qt-Zy0BeiJfFQdImOn3FzdNCY-7ET7Rp8PMk,37911
|
246
246
|
matrice/deployment/streaming_gateway_manager.py,sha256=ifYGl3g25wyU39HwhPQyI2OgF3M6oIqKMWt8RXtMxY8,21401
|
247
|
-
matrice-1.0.
|
248
|
-
matrice-1.0.
|
249
|
-
matrice-1.0.
|
250
|
-
matrice-1.0.
|
251
|
-
matrice-1.0.
|
247
|
+
matrice-1.0.99283.dist-info/licenses/LICENSE.txt,sha256=2bm9uFabQZ3Ykb_SaSU_uUbAj2-htc6WJQmS_65qD00,1073
|
248
|
+
matrice-1.0.99283.dist-info/METADATA,sha256=Ta0Sa-2UutK8cbm8fadlq3uzJBlg-QeZ1QM9nESx-iI,14624
|
249
|
+
matrice-1.0.99283.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
250
|
+
matrice-1.0.99283.dist-info/top_level.txt,sha256=P97js8ur6o5ClRqMH3Cjoab_NqbJ6sOQ3rJmVzKBvMc,8
|
251
|
+
matrice-1.0.99283.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|