matrice 1.0.99174__py3-none-any.whl → 1.0.99176__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.
@@ -34,6 +34,7 @@ APP_NAME_TO_USECASE = {
34
34
  "defect_detection_products": "defect_detection_products",
35
35
  "parking_space_detection": "parking_space_detection",
36
36
  "car_damage_detection": "car_damage_detection",
37
+ "license_plate_detection": "license_plate_detection",
37
38
  }
38
39
 
39
40
  APP_NAME_TO_CATEGORY = {
@@ -72,6 +73,7 @@ APP_NAME_TO_CATEGORY = {
72
73
  "defect_detection_products": "retail",
73
74
  "parking_space_detection": "parking_space",
74
75
  "car_damage_detection": "car_damage",
76
+ "license_plate_detection": "license_plate",
75
77
  }
76
78
 
77
79
  def get_usecase_from_app_name(app_name: str) -> str:
@@ -42,21 +42,18 @@ class LicensePlateConfig(BaseConfig):
42
42
  confidence_threshold: float = 0.6
43
43
 
44
44
  usecase_categories: List[str] = field(
45
- default_factory=lambda: ['License_Plate', 'cars', 'motorcycle', 'truck']
45
+ default_factory=lambda: ['license_plate']
46
46
  )
47
47
 
48
48
  target_categories: List[str] = field(
49
- default_factory=lambda: ['License_Plate']
49
+ default_factory=lambda: ['license_plate']
50
50
  )
51
51
 
52
52
  alert_config: Optional[AlertConfig] = None
53
53
 
54
54
  index_to_category: Optional[Dict[int, str]] = field(
55
55
  default_factory=lambda: {
56
- 0: "License_Plate",
57
- 1: "cars",
58
- 2: "motorcycle",
59
- 3: "truck"
56
+ 0: 'license_plate'
60
57
  }
61
58
  )
62
59
 
@@ -64,7 +61,7 @@ class LicensePlateConfig(BaseConfig):
64
61
  class LicensePlateUseCase(BaseProcessor):
65
62
  # Human-friendly display names for categories
66
63
  CATEGORY_DISPLAY = {
67
- "License_Plate": "License_Plate"
64
+ "license_plate": "license_plate"
68
65
  }
69
66
 
70
67
  def __init__(self):
@@ -75,7 +72,7 @@ class LicensePlateUseCase(BaseProcessor):
75
72
  self.CASE_VERSION: Optional[str] = '1.3'
76
73
 
77
74
  # List of categories to track
78
- self.target_categories = ["License_Plate"]
75
+ self.target_categories = ["license_plate"]
79
76
 
80
77
  # Initialize smoothing tracker
81
78
  self.smoothing_tracker = None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: matrice
3
- Version: 1.0.99174
3
+ Version: 1.0.99176
4
4
  Summary: SDK for connecting to matrice.ai services
5
5
  Home-page: https://github.com/matrice-ai/python-sdk
6
6
  Author: Matrice.ai
@@ -127,7 +127,7 @@ matrice/deploy/utils/boundary_drawing_internal/boundary_drawing_internal.py,sha2
127
127
  matrice/deploy/utils/boundary_drawing_internal/boundary_drawing_tool.py,sha256=eY0VQGZ8BfTmR4_ThIAXaumBjh8_c7w69w-d3kta8p0,15421
128
128
  matrice/deploy/utils/boundary_drawing_internal/example_usage.py,sha256=cUBhxxsVdTQWIPvIOjCUGrhqon7ZBr5N6qNewjrTIuk,6434
129
129
  matrice/deploy/utils/post_processing/__init__.py,sha256=9wVjSGmFCVYWsgfe2__sXGGSNtnZFKy_DIzeLVzlrwI,23471
130
- matrice/deploy/utils/post_processing/config.py,sha256=pIvaiDPCw6Wo-QJMlqcLyC-qI-ME3HFrJ4xxRCordyA,3678
130
+ matrice/deploy/utils/post_processing/config.py,sha256=olmkOCAaVqQNC0wSJNdxG1aOlOFVG6z8IH-GocpCD6Q,3784
131
131
  matrice/deploy/utils/post_processing/processor.py,sha256=vj8QmMBJ_HG-6eWexu0yfSnbyxZNcEPDvShgbl5Dhzs,31235
132
132
  matrice/deploy/utils/post_processing/advanced_tracker/__init__.py,sha256=tAPFzI_Yep5TLX60FDwKqBqppc-EbxSr0wNsQ9DGI1o,423
133
133
  matrice/deploy/utils/post_processing/advanced_tracker/base.py,sha256=VqWy4dd5th5LK-JfueTt2_GSEoOi5QQfQxjTNhmQoLc,3580
@@ -181,7 +181,7 @@ matrice/deploy/utils/post_processing/usecases/flower_segmentation.py,sha256=4I7q
181
181
  matrice/deploy/utils/post_processing/usecases/gender_detection.py,sha256=DEnCTRew6B7DtPcBQVCTtpd_IQMvMusBcu6nadUg2oM,40107
182
182
  matrice/deploy/utils/post_processing/usecases/leaf.py,sha256=cwgB1ZNxkQFtkk-thSJrkXOGou1ghJr1kqtopb3sLD4,37036
183
183
  matrice/deploy/utils/post_processing/usecases/leaf_disease.py,sha256=bkiLccTdf4KUq3he4eCpBlKXb5exr-WBhQ_oWQ7os68,36225
184
- matrice/deploy/utils/post_processing/usecases/license_plate_detection.py,sha256=F_1lvw0WxBPzqwH3MebwYRovLzIPoLYaj9RQgdO3hiA,39673
184
+ matrice/deploy/utils/post_processing/usecases/license_plate_detection.py,sha256=Odbyq599IAqoEOfE1yDPGw5d8xzhaVdU34wjSPoYfcU,39566
185
185
  matrice/deploy/utils/post_processing/usecases/mask_detection.py,sha256=MNpCcuefOdW7C8g_x_mNuWYA4mbyg8UNwomwBPoKtr0,39684
186
186
  matrice/deploy/utils/post_processing/usecases/parking.py,sha256=lqTGqcjUZZPFw3tu11Ha8BSsZ311K5--wEZnlVsXakU,34534
187
187
  matrice/deploy/utils/post_processing/usecases/parking_space_detection.py,sha256=xwhkJjGGKcT827URbasi3olYqhd95Sh0zsEIphwzcgY,39561
@@ -227,8 +227,8 @@ matrice/deployment/camera_manager.py,sha256=ReBZqm1CNXRImKcbcZ4uWAT3TUWkof1D28oB
227
227
  matrice/deployment/deployment.py,sha256=PLIUD-PxTaC2Zxb3Y12wUddsryV-OJetjCjLoSUh7S4,48103
228
228
  matrice/deployment/inference_pipeline.py,sha256=bXLgd29ViA7o0c7YWLFJl1otBUQfTPb61jS6VawQB0Y,37918
229
229
  matrice/deployment/streaming_gateway_manager.py,sha256=w5swGsuFVfZIdOm2ZuBHRHlRdYYJMLopLsf2gb91lQ8,20946
230
- matrice-1.0.99174.dist-info/licenses/LICENSE.txt,sha256=2bm9uFabQZ3Ykb_SaSU_uUbAj2-htc6WJQmS_65qD00,1073
231
- matrice-1.0.99174.dist-info/METADATA,sha256=wHVAQeNTep5wsKewyODCBg7nNkN-GR2TMui6F5YvX0g,14624
232
- matrice-1.0.99174.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
233
- matrice-1.0.99174.dist-info/top_level.txt,sha256=P97js8ur6o5ClRqMH3Cjoab_NqbJ6sOQ3rJmVzKBvMc,8
234
- matrice-1.0.99174.dist-info/RECORD,,
230
+ matrice-1.0.99176.dist-info/licenses/LICENSE.txt,sha256=2bm9uFabQZ3Ykb_SaSU_uUbAj2-htc6WJQmS_65qD00,1073
231
+ matrice-1.0.99176.dist-info/METADATA,sha256=B4B4jdks5Csejfm75uROvCfEULO5L29NfxxPr-fo6kw,14624
232
+ matrice-1.0.99176.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
233
+ matrice-1.0.99176.dist-info/top_level.txt,sha256=P97js8ur6o5ClRqMH3Cjoab_NqbJ6sOQ3rJmVzKBvMc,8
234
+ matrice-1.0.99176.dist-info/RECORD,,