matrice 1.0.99219__py3-none-any.whl → 1.0.99220__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/__init__.py +10 -5
- {matrice-1.0.99219.dist-info → matrice-1.0.99220.dist-info}/METADATA +1 -1
- {matrice-1.0.99219.dist-info → matrice-1.0.99220.dist-info}/RECORD +6 -6
- {matrice-1.0.99219.dist-info → matrice-1.0.99220.dist-info}/WHEEL +0 -0
- {matrice-1.0.99219.dist-info → matrice-1.0.99220.dist-info}/licenses/LICENSE.txt +0 -0
- {matrice-1.0.99219.dist-info → matrice-1.0.99220.dist-info}/top_level.txt +0 -0
@@ -102,7 +102,6 @@ from .usecases.concrete_crack_detection import ConcreteCrackConfig
|
|
102
102
|
from .usecases.fashion_detection import FashionDetectionConfig, FashionDetectionUseCase
|
103
103
|
from .usecases.shelf_inventory_detection import ShelfInventoryConfig
|
104
104
|
from .usecases.road_lane_detection import LaneDetectionConfig
|
105
|
-
from .usecases.human_activity_recognition import HumanActivityConfig, HumanActivityUseCase
|
106
105
|
|
107
106
|
from .usecases.warehouse_object_segmentation import WarehouseObjectConfig
|
108
107
|
from .usecases.shopping_cart_analysis import ShoppingCartConfig
|
@@ -116,6 +115,8 @@ from .usecases.windmill_maintenance import WindmillMaintenanceUseCase, WindmillM
|
|
116
115
|
from .usecases.flower_segmentation import FlowerUseCase, FlowerConfig
|
117
116
|
from .usecases.leaf import LeafConfig, LeafUseCase
|
118
117
|
from .usecases.litter_monitoring import LitterDetectionUseCase,LitterDetectionConfig
|
118
|
+
from .usecases.human_activity import HumanActivityRecognitionUseCase, HumanActivityRecognitionConfig
|
119
|
+
from .usecases.gas_leak_detection import GasLeakConfig, GasLeakUseCase
|
119
120
|
|
120
121
|
#Put all IMAGE based usecases here
|
121
122
|
from .usecases.blood_cancer_detection_img import BloodCancerDetectionConfig, BloodCancerDetectionUseCase
|
@@ -189,7 +190,6 @@ from .usecases import (
|
|
189
190
|
_people_counting = PeopleCountingUseCase()
|
190
191
|
_customer_service = CustomerServiceUseCase()
|
191
192
|
_advanced_customer_service = AdvancedCustomerServiceUseCase()
|
192
|
-
_human_activity = HumanActivityUseCase()
|
193
193
|
_basic_counting_tracking = BasicCountingTrackingUseCase()
|
194
194
|
_license_plate = LicensePlateUseCase()
|
195
195
|
_color_detection = ColorDetectionUseCase()
|
@@ -244,6 +244,8 @@ _flower_segmentation = FlowerUseCase()
|
|
244
244
|
_leaf_det = LeafUseCase()
|
245
245
|
_smoker_detection = SmokerDetectionUseCase()
|
246
246
|
_litter_detection = LitterDetectionUseCase()
|
247
|
+
_human_activity = HumanActivityRecognitionUseCase()
|
248
|
+
_gas_leak_detection = GasLeakUseCase()
|
247
249
|
|
248
250
|
|
249
251
|
#Put all IMAGE based usecases here
|
@@ -256,7 +258,6 @@ registry.register_use_case(_litter_detection.category, _litter_detection.name, L
|
|
256
258
|
registry.register_use_case(_people_counting.category, _people_counting.name, PeopleCountingUseCase)
|
257
259
|
registry.register_use_case(_customer_service.category, _customer_service.name, CustomerServiceUseCase)
|
258
260
|
registry.register_use_case(_advanced_customer_service.category, _advanced_customer_service.name, AdvancedCustomerServiceUseCase)
|
259
|
-
registry.register_use_case(_human_activity.category, _human_activity.name, HumanActivityUseCase)
|
260
261
|
registry.register_use_case(_basic_counting_tracking.category, _basic_counting_tracking.name, BasicCountingTrackingUseCase)
|
261
262
|
registry.register_use_case(_license_plate.category, _license_plate.name, LicensePlateUseCase)
|
262
263
|
registry.register_use_case(_color_detection.category, _color_detection.name, ColorDetectionUseCase)
|
@@ -312,6 +313,8 @@ registry.register_use_case(_flower_segmentation.category, _flower_segmentation.n
|
|
312
313
|
registry.register_use_case(_parking_det.category, _parking_det.name, ParkingUseCase)
|
313
314
|
registry.register_use_case(_leaf_det.category, _leaf_det.name, LeafUseCase)
|
314
315
|
registry.register_use_case(_smoker_detection.category, _smoker_detection.name, SmokerDetectionUseCase)
|
316
|
+
registry.register_use_case(_human_activity.category, _human_activity.name, HumanActivityRecognitionUseCase)
|
317
|
+
registry.register_use_case(_gas_leak_detection.category, _gas_leak_detection.name, GasLeakUseCase)
|
315
318
|
|
316
319
|
#Put all IMAGE based usecases here
|
317
320
|
registry.register_use_case(_blood_cancer_detection.category, _blood_cancer_detection.name, BloodCancerDetectionUseCase)
|
@@ -449,7 +452,6 @@ __all__ = [
|
|
449
452
|
'BaseConfig',
|
450
453
|
'PeopleCountingConfig',
|
451
454
|
'CustomerServiceConfig',
|
452
|
-
'HumanActivityConfig',
|
453
455
|
'ColorDetectionConfig',
|
454
456
|
'LicensePlateConfig',
|
455
457
|
'MaskDetectionConfig',
|
@@ -502,6 +504,8 @@ __all__ = [
|
|
502
504
|
'FlowerConfig',
|
503
505
|
'SmokerDetectionConfig',
|
504
506
|
'LitterDetectionConfig',
|
507
|
+
'GasLeakConfig',
|
508
|
+
'HumanActivityRecognitionConfig',
|
505
509
|
|
506
510
|
#Put all IMAGE based usecase CONFIGS here
|
507
511
|
'BloodCancerDetectionConfig',
|
@@ -513,7 +517,6 @@ __all__ = [
|
|
513
517
|
'PeopleCountingUseCase',
|
514
518
|
'CustomerServiceUseCase',
|
515
519
|
'AdvancedCustomerServiceUseCase',
|
516
|
-
'HumanActivityUseCase',
|
517
520
|
'BasicCountingTrackingUseCase',
|
518
521
|
'LicensePlateUseCase',
|
519
522
|
'ColorDetectionUseCase',
|
@@ -563,6 +566,8 @@ __all__ = [
|
|
563
566
|
'FlowerUseCase',
|
564
567
|
'SmokerDetectionUseCase',
|
565
568
|
'LitterDetectionUseCase',
|
569
|
+
'HumanActivityRecognitionUseCase',
|
570
|
+
'GasLeakUseCase',
|
566
571
|
|
567
572
|
#Put all IMAGE based usecases here
|
568
573
|
'BloodCancerDetectionUseCase',
|
@@ -128,7 +128,7 @@ matrice/deploy/utils/boundary_drawing_internal/__init__.py,sha256=4mUOm5_T-vf-XA
|
|
128
128
|
matrice/deploy/utils/boundary_drawing_internal/boundary_drawing_internal.py,sha256=5SPGXS9EIhJJtvC5qTBBmOTQqSKU2byxHIFgo6Bmt-U,43944
|
129
129
|
matrice/deploy/utils/boundary_drawing_internal/boundary_drawing_tool.py,sha256=eY0VQGZ8BfTmR4_ThIAXaumBjh8_c7w69w-d3kta8p0,15421
|
130
130
|
matrice/deploy/utils/boundary_drawing_internal/example_usage.py,sha256=cUBhxxsVdTQWIPvIOjCUGrhqon7ZBr5N6qNewjrTIuk,6434
|
131
|
-
matrice/deploy/utils/post_processing/__init__.py,sha256=
|
131
|
+
matrice/deploy/utils/post_processing/__init__.py,sha256=1swcT34M4w5f5simPeh5wYu3YXR20pHnEZd4Gmlw9jw,24897
|
132
132
|
matrice/deploy/utils/post_processing/config.py,sha256=6PbQus8YDwag859incWR8nXupE9C63tp9TY0lnO7Y6Y,5021
|
133
133
|
matrice/deploy/utils/post_processing/processor.py,sha256=3ZFGnD-KdMiPkczYwe7gIkjiBQUF9iZDBrgOaSznapw,34253
|
134
134
|
matrice/deploy/utils/post_processing/advanced_tracker/__init__.py,sha256=tAPFzI_Yep5TLX60FDwKqBqppc-EbxSr0wNsQ9DGI1o,423
|
@@ -240,8 +240,8 @@ matrice/deployment/camera_manager.py,sha256=MEluadz_I3k10GqwFb_w5w_HhuHcEu2vA7oh
|
|
240
240
|
matrice/deployment/deployment.py,sha256=HFt151eWq6iqIAMsQvurpV2WNxW6Cx_gIUVfnVy5SWE,48093
|
241
241
|
matrice/deployment/inference_pipeline.py,sha256=6b4Mm3-qt-Zy0BeiJfFQdImOn3FzdNCY-7ET7Rp8PMk,37911
|
242
242
|
matrice/deployment/streaming_gateway_manager.py,sha256=90O_SvR4RtBJxR6dy43uHNRTRdgxQE09KzhzHzVqq3E,20939
|
243
|
-
matrice-1.0.
|
244
|
-
matrice-1.0.
|
245
|
-
matrice-1.0.
|
246
|
-
matrice-1.0.
|
247
|
-
matrice-1.0.
|
243
|
+
matrice-1.0.99220.dist-info/licenses/LICENSE.txt,sha256=2bm9uFabQZ3Ykb_SaSU_uUbAj2-htc6WJQmS_65qD00,1073
|
244
|
+
matrice-1.0.99220.dist-info/METADATA,sha256=eAAUJJXw0eGeTxUd97RiLagMK3_0BQJScB2DQW8KUAs,14624
|
245
|
+
matrice-1.0.99220.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
246
|
+
matrice-1.0.99220.dist-info/top_level.txt,sha256=P97js8ur6o5ClRqMH3Cjoab_NqbJ6sOQ3rJmVzKBvMc,8
|
247
|
+
matrice-1.0.99220.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|