matrice-analytics 0.1.0__tar.gz → 0.1.2__tar.gz

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-analytics might be problematic. Click here for more details.

Files changed (279) hide show
  1. {matrice_analytics-0.1.0 → matrice_analytics-0.1.2}/PKG-INFO +14 -12
  2. {matrice_analytics-0.1.0 → matrice_analytics-0.1.2}/README.md +6 -6
  3. {matrice_analytics-0.1.0 → matrice_analytics-0.1.2}/matrice_analytics.egg-info/PKG-INFO +14 -12
  4. matrice_analytics-0.1.2/matrice_analytics.egg-info/SOURCES.txt +163 -0
  5. {matrice_analytics-0.1.0 → matrice_analytics-0.1.2}/pyproject.toml +13 -9
  6. matrice_analytics-0.1.2/setup.py +322 -0
  7. matrice_analytics-0.1.2/src/matrice_analytics/__init__.py +28 -0
  8. matrice_analytics-0.1.2/src/matrice_analytics/boundary_drawing_internal/README.md +305 -0
  9. matrice_analytics-0.1.2/src/matrice_analytics/boundary_drawing_internal/__init__.py +45 -0
  10. matrice_analytics-0.1.2/src/matrice_analytics/boundary_drawing_internal/boundary_drawing_internal.py +1207 -0
  11. matrice_analytics-0.1.2/src/matrice_analytics/boundary_drawing_internal/boundary_drawing_tool.py +429 -0
  12. matrice_analytics-0.1.2/src/matrice_analytics/boundary_drawing_internal/boundary_tool_template.html +1036 -0
  13. matrice_analytics-0.1.2/src/matrice_analytics/boundary_drawing_internal/example_usage.py +206 -0
  14. matrice_analytics-0.1.2/src/matrice_analytics/boundary_drawing_internal/usage/README.md +110 -0
  15. matrice_analytics-0.1.2/src/matrice_analytics/boundary_drawing_internal/usage/boundary_drawer_launcher.py +102 -0
  16. matrice_analytics-0.1.2/src/matrice_analytics/boundary_drawing_internal/usage/simple_boundary_launcher.py +107 -0
  17. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/README.md +455 -0
  18. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/__init__.py +732 -0
  19. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/advanced_tracker/README.md +650 -0
  20. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/advanced_tracker/__init__.py +17 -0
  21. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/advanced_tracker/base.py +99 -0
  22. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/advanced_tracker/config.py +77 -0
  23. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/advanced_tracker/kalman_filter.py +370 -0
  24. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/advanced_tracker/matching.py +195 -0
  25. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/advanced_tracker/strack.py +230 -0
  26. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/advanced_tracker/tracker.py +367 -0
  27. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/config.py +142 -0
  28. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/core/__init__.py +63 -0
  29. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/core/base.py +704 -0
  30. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/core/config.py +3188 -0
  31. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/core/config_utils.py +925 -0
  32. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/face_reg/__init__.py +43 -0
  33. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/face_reg/compare_similarity.py +556 -0
  34. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/face_reg/embedding_manager.py +681 -0
  35. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/face_reg/face_recognition.py +1870 -0
  36. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/face_reg/face_recognition_client.py +339 -0
  37. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/face_reg/people_activity_logging.py +283 -0
  38. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/ocr/easyocr_extractor.py +248 -0
  39. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/ocr/postprocessing.py +271 -0
  40. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/ocr/preprocessing.py +52 -0
  41. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/post_processor.py +1153 -0
  42. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/__init__.py +1 -0
  43. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/run_tests.py +143 -0
  44. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/test_advanced_customer_service.py +841 -0
  45. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/test_basic_counting_tracking.py +523 -0
  46. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/test_comprehensive.py +531 -0
  47. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/test_config.py +852 -0
  48. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/test_customer_service.py +585 -0
  49. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/test_data_generators.py +583 -0
  50. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/test_people_counting.py +510 -0
  51. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/test_processor.py +524 -0
  52. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/test_utilities.py +356 -0
  53. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/test_utils.py +743 -0
  54. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/Histopathological_Cancer_Detection_img.py +604 -0
  55. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/__init__.py +267 -0
  56. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/abandoned_object_detection.py +797 -0
  57. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/advanced_customer_service.py +1601 -0
  58. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/age_detection.py +842 -0
  59. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/age_gender_detection.py +1043 -0
  60. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/anti_spoofing_detection.py +656 -0
  61. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/assembly_line_detection.py +841 -0
  62. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/banana_defect_detection.py +624 -0
  63. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/basic_counting_tracking.py +667 -0
  64. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/blood_cancer_detection_img.py +881 -0
  65. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/car_damage_detection.py +834 -0
  66. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/car_part_segmentation.py +946 -0
  67. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/car_service.py +1601 -0
  68. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/cardiomegaly_classification.py +864 -0
  69. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/cell_microscopy_segmentation.py +897 -0
  70. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/chicken_pose_detection.py +648 -0
  71. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/child_monitoring.py +814 -0
  72. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/color/clip.py +232 -0
  73. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/color/clip_processor/merges.txt +48895 -0
  74. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/color/clip_processor/preprocessor_config.json +28 -0
  75. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/color/clip_processor/special_tokens_map.json +30 -0
  76. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/color/clip_processor/tokenizer.json +245079 -0
  77. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/color/clip_processor/tokenizer_config.json +32 -0
  78. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/color/clip_processor/vocab.json +1 -0
  79. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/color/color_map_utils.py +70 -0
  80. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/color/color_mapper.py +468 -0
  81. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/color_detection.py +1835 -0
  82. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/color_map_utils.py +70 -0
  83. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/concrete_crack_detection.py +827 -0
  84. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/crop_weed_detection.py +781 -0
  85. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/customer_service.py +1008 -0
  86. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/defect_detection_products.py +936 -0
  87. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/distracted_driver_detection.py +822 -0
  88. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/drone_traffic_monitoring.py +930 -0
  89. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/drowsy_driver_detection.py +829 -0
  90. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/dwell_detection.py +829 -0
  91. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/emergency_vehicle_detection.py +827 -0
  92. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/face_emotion.py +813 -0
  93. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/face_recognition.py +827 -0
  94. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/fashion_detection.py +835 -0
  95. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/field_mapping.py +902 -0
  96. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/fire_detection.py +1112 -0
  97. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/flare_analysis.py +891 -0
  98. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/flower_segmentation.py +1006 -0
  99. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/gas_leak_detection.py +837 -0
  100. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/gender_detection.py +832 -0
  101. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/human_activity_recognition.py +871 -0
  102. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/intrusion_detection.py +1672 -0
  103. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/leaf.py +821 -0
  104. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/leaf_disease.py +840 -0
  105. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/leak_detection.py +837 -0
  106. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/license_plate_detection.py +914 -0
  107. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/license_plate_monitoring.py +1194 -0
  108. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/litter_monitoring.py +717 -0
  109. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/mask_detection.py +869 -0
  110. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/natural_disaster.py +907 -0
  111. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/parking.py +787 -0
  112. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/parking_space_detection.py +822 -0
  113. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/pcb_defect_detection.py +888 -0
  114. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/pedestrian_detection.py +808 -0
  115. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/people_counting.py +1728 -0
  116. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/people_tracking.py +1842 -0
  117. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/pipeline_detection.py +605 -0
  118. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/plaque_segmentation_img.py +874 -0
  119. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/pothole_segmentation.py +915 -0
  120. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/ppe_compliance.py +645 -0
  121. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/price_tag_detection.py +822 -0
  122. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/proximity_detection.py +1901 -0
  123. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/road_lane_detection.py +623 -0
  124. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/road_traffic_density.py +832 -0
  125. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/road_view_segmentation.py +915 -0
  126. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/shelf_inventory_detection.py +583 -0
  127. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/shoplifting_detection.py +822 -0
  128. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/shopping_cart_analysis.py +899 -0
  129. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/skin_cancer_classification_img.py +864 -0
  130. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/smoker_detection.py +833 -0
  131. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/solar_panel.py +810 -0
  132. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/suspicious_activity_detection.py +1030 -0
  133. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/template_usecase.py +380 -0
  134. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/theft_detection.py +648 -0
  135. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/traffic_sign_monitoring.py +724 -0
  136. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/underground_pipeline_defect_detection.py +775 -0
  137. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/underwater_pollution_detection.py +842 -0
  138. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/vehicle_monitoring.py +950 -0
  139. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/warehouse_object_segmentation.py +899 -0
  140. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/waterbody_segmentation.py +923 -0
  141. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/weapon_detection.py +771 -0
  142. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/weld_defect_detection.py +615 -0
  143. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/wildlife_monitoring.py +898 -0
  144. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/windmill_maintenance.py +834 -0
  145. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/wound_segmentation.py +856 -0
  146. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/__init__.py +150 -0
  147. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/advanced_counting_utils.py +400 -0
  148. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/advanced_helper_utils.py +317 -0
  149. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/advanced_tracking_utils.py +461 -0
  150. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/alerting_utils.py +213 -0
  151. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/category_mapping_utils.py +94 -0
  152. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/color_utils.py +592 -0
  153. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/counting_utils.py +182 -0
  154. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/filter_utils.py +261 -0
  155. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/format_utils.py +293 -0
  156. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/geometry_utils.py +300 -0
  157. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/smoothing_utils.py +358 -0
  158. matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/tracking_utils.py +234 -0
  159. matrice_analytics-0.1.0/matrice_analytics.egg-info/SOURCES.txt +0 -123
  160. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/__init__.pyi +0 -14
  161. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/advanced_tracker/base.cpython-312-x86_64-linux-gnu.so +0 -0
  162. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/advanced_tracker/config.cpython-312-x86_64-linux-gnu.so +0 -0
  163. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/advanced_tracker/kalman_filter.cpython-312-x86_64-linux-gnu.so +0 -0
  164. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/advanced_tracker/matching.cpython-312-x86_64-linux-gnu.so +0 -0
  165. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/advanced_tracker/strack.cpython-312-x86_64-linux-gnu.so +0 -0
  166. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/advanced_tracker/tracker.cpython-312-x86_64-linux-gnu.so +0 -0
  167. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/config.cpython-312-x86_64-linux-gnu.so +0 -0
  168. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/core/base.cpython-312-x86_64-linux-gnu.so +0 -0
  169. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/core/config.cpython-312-x86_64-linux-gnu.so +0 -0
  170. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/core/config_utils.cpython-312-x86_64-linux-gnu.so +0 -0
  171. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/ocr/easyocr_extractor.cpython-312-x86_64-linux-gnu.so +0 -0
  172. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/ocr/postprocessing.cpython-312-x86_64-linux-gnu.so +0 -0
  173. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/ocr/preprocessing.cpython-312-x86_64-linux-gnu.so +0 -0
  174. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/processor.cpython-312-x86_64-linux-gnu.so +0 -0
  175. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/test_cases/run_tests.cpython-312-x86_64-linux-gnu.so +0 -0
  176. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/test_cases/test_advanced_customer_service.cpython-312-x86_64-linux-gnu.so +0 -0
  177. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/test_cases/test_basic_counting_tracking.cpython-312-x86_64-linux-gnu.so +0 -0
  178. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/test_cases/test_comprehensive.cpython-312-x86_64-linux-gnu.so +0 -0
  179. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/test_cases/test_config.cpython-312-x86_64-linux-gnu.so +0 -0
  180. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/test_cases/test_customer_service.cpython-312-x86_64-linux-gnu.so +0 -0
  181. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/test_cases/test_data_generators.cpython-312-x86_64-linux-gnu.so +0 -0
  182. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/test_cases/test_people_counting.cpython-312-x86_64-linux-gnu.so +0 -0
  183. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/test_cases/test_processor.cpython-312-x86_64-linux-gnu.so +0 -0
  184. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/test_cases/test_utilities.cpython-312-x86_64-linux-gnu.so +0 -0
  185. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/test_cases/test_utils.cpython-312-x86_64-linux-gnu.so +0 -0
  186. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/Histopathological_Cancer_Detection_img.cpython-312-x86_64-linux-gnu.so +0 -0
  187. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/abandoned_object_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  188. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/advanced_customer_service.cpython-312-x86_64-linux-gnu.so +0 -0
  189. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/age_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  190. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/anti_spoofing_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  191. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/assembly_line_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  192. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/banana_defect_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  193. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/basic_counting_tracking.cpython-312-x86_64-linux-gnu.so +0 -0
  194. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/blood_cancer_detection_img.cpython-312-x86_64-linux-gnu.so +0 -0
  195. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/car_damage_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  196. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/car_part_segmentation.cpython-312-x86_64-linux-gnu.so +0 -0
  197. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/car_service.cpython-312-x86_64-linux-gnu.so +0 -0
  198. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/cardiomegaly_classification.cpython-312-x86_64-linux-gnu.so +0 -0
  199. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/chicken_pose_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  200. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/child_monitoring.cpython-312-x86_64-linux-gnu.so +0 -0
  201. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/color/color_map_utils.cpython-312-x86_64-linux-gnu.so +0 -0
  202. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/color/color_mapper.cpython-312-x86_64-linux-gnu.so +0 -0
  203. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/color_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  204. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/color_map_utils.cpython-312-x86_64-linux-gnu.so +0 -0
  205. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/concrete_crack_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  206. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/crop_weed_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  207. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/customer_service.cpython-312-x86_64-linux-gnu.so +0 -0
  208. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/defect_detection_products.cpython-312-x86_64-linux-gnu.so +0 -0
  209. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/distracted_driver_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  210. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/drowsy_driver_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  211. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/emergency_vehicle_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  212. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/face_emotion.cpython-312-x86_64-linux-gnu.so +0 -0
  213. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/face_recognition.cpython-312-x86_64-linux-gnu.so +0 -0
  214. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/fashion_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  215. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/field_mapping.cpython-312-x86_64-linux-gnu.so +0 -0
  216. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/fire_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  217. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/flare_analysis.cpython-312-x86_64-linux-gnu.so +0 -0
  218. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/flower_segmentation.cpython-312-x86_64-linux-gnu.so +0 -0
  219. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/gas_leak_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  220. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/gender_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  221. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/human_activity_recognition.cpython-312-x86_64-linux-gnu.so +0 -0
  222. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/intrusion_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  223. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/leaf.cpython-312-x86_64-linux-gnu.so +0 -0
  224. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/leaf_disease.cpython-312-x86_64-linux-gnu.so +0 -0
  225. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/leak_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  226. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/license_plate_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  227. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/license_plate_monitoring.cpython-312-x86_64-linux-gnu.so +0 -0
  228. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/litter_monitoring.cpython-312-x86_64-linux-gnu.so +0 -0
  229. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/mask_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  230. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/parking.cpython-312-x86_64-linux-gnu.so +0 -0
  231. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/parking_space_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  232. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/pedestrian_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  233. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/people_counting.cpython-312-x86_64-linux-gnu.so +0 -0
  234. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/pipeline_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  235. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/plaque_segmentation_img.cpython-312-x86_64-linux-gnu.so +0 -0
  236. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/pothole_segmentation.cpython-312-x86_64-linux-gnu.so +0 -0
  237. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/ppe_compliance.cpython-312-x86_64-linux-gnu.so +0 -0
  238. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/price_tag_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  239. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/proximity_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  240. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/road_lane_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  241. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/road_traffic_density.cpython-312-x86_64-linux-gnu.so +0 -0
  242. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/road_view_segmentation.cpython-312-x86_64-linux-gnu.so +0 -0
  243. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/shelf_inventory_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  244. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/shoplifting_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  245. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/shopping_cart_analysis.cpython-312-x86_64-linux-gnu.so +0 -0
  246. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/skin_cancer_classification_img.cpython-312-x86_64-linux-gnu.so +0 -0
  247. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/smoker_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  248. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/solar_panel.cpython-312-x86_64-linux-gnu.so +0 -0
  249. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/template_usecase.cpython-312-x86_64-linux-gnu.so +0 -0
  250. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/theft_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  251. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/traffic_sign_monitoring.cpython-312-x86_64-linux-gnu.so +0 -0
  252. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/underwater_pollution_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  253. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/vehicle_monitoring.cpython-312-x86_64-linux-gnu.so +0 -0
  254. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/warehouse_object_segmentation.cpython-312-x86_64-linux-gnu.so +0 -0
  255. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/waterbody_segmentation.cpython-312-x86_64-linux-gnu.so +0 -0
  256. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/weapon_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  257. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/weld_defect_detection.cpython-312-x86_64-linux-gnu.so +0 -0
  258. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/windmill_maintenance.cpython-312-x86_64-linux-gnu.so +0 -0
  259. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/wound_segmentation.cpython-312-x86_64-linux-gnu.so +0 -0
  260. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/utils/advanced_counting_utils.cpython-312-x86_64-linux-gnu.so +0 -0
  261. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/utils/advanced_helper_utils.cpython-312-x86_64-linux-gnu.so +0 -0
  262. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/utils/advanced_tracking_utils.cpython-312-x86_64-linux-gnu.so +0 -0
  263. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/utils/alerting_utils.cpython-312-x86_64-linux-gnu.so +0 -0
  264. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/utils/category_mapping_utils.cpython-312-x86_64-linux-gnu.so +0 -0
  265. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/utils/color_utils.cpython-312-x86_64-linux-gnu.so +0 -0
  266. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/utils/counting_utils.cpython-312-x86_64-linux-gnu.so +0 -0
  267. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/utils/filter_utils.cpython-312-x86_64-linux-gnu.so +0 -0
  268. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/utils/format_utils.cpython-312-x86_64-linux-gnu.so +0 -0
  269. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/utils/geometry_utils.cpython-312-x86_64-linux-gnu.so +0 -0
  270. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/utils/smoothing_utils.cpython-312-x86_64-linux-gnu.so +0 -0
  271. matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/utils/tracking_utils.cpython-312-x86_64-linux-gnu.so +0 -0
  272. matrice_analytics-0.1.0/setup.py +0 -198
  273. {matrice_analytics-0.1.0 → matrice_analytics-0.1.2}/LICENSE.txt +0 -0
  274. {matrice_analytics-0.1.0 → matrice_analytics-0.1.2}/matrice_analytics.egg-info/dependency_links.txt +0 -0
  275. {matrice_analytics-0.1.0 → matrice_analytics-0.1.2}/matrice_analytics.egg-info/not-zip-safe +0 -0
  276. {matrice_analytics-0.1.0 → matrice_analytics-0.1.2}/matrice_analytics.egg-info/top_level.txt +0 -0
  277. {matrice_analytics-0.1.0 → matrice_analytics-0.1.2}/setup.cfg +0 -0
  278. {matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics → matrice_analytics-0.1.2/src/matrice_analytics/post_processing/ocr}/__init__.py +0 -0
  279. {matrice_analytics-0.1.0/matrice_analytics_compiled → matrice_analytics-0.1.2/src}/matrice_analytics/py.typed +0 -0
@@ -1,26 +1,28 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: matrice_analytics
3
- Version: 0.1.0
4
- Summary: Common utilities for Matrice.ai services
3
+ Version: 0.1.2
4
+ Summary: Common server utilities for Matrice.ai services
5
5
  Author-email: "Matrice.ai" <dipendra@matrice.ai>
6
6
  License-Expression: MIT
7
- Keywords: matrice,analytics,utilities,cython,postprocessing,usecases
7
+ Keywords: matrice,common,utilities,pyarmor,obfuscated
8
8
  Classifier: Development Status :: 4 - Beta
9
9
  Classifier: Intended Audience :: Developers
10
+ Classifier: Operating System :: OS Independent
10
11
  Classifier: Operating System :: POSIX :: Linux
12
+ Classifier: Operating System :: Microsoft :: Windows
13
+ Classifier: Operating System :: MacOS
11
14
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
12
- Classifier: Programming Language :: Python :: 3
13
- Classifier: Programming Language :: Python :: 3.7
14
15
  Classifier: Programming Language :: Python :: 3.8
15
16
  Classifier: Programming Language :: Python :: 3.9
16
17
  Classifier: Programming Language :: Python :: 3.10
17
18
  Classifier: Programming Language :: Python :: 3.11
18
19
  Classifier: Programming Language :: Python :: 3.12
19
20
  Classifier: Typing :: Typed
20
- Requires-Python: <4,>=3.7
21
+ Requires-Python: >=3.8
21
22
  Description-Content-Type: text/markdown
22
23
  License-File: LICENSE.txt
23
24
  Dynamic: license-file
25
+ Dynamic: requires-python
24
26
 
25
27
  # Post-Processing Module - Refactored Architecture
26
28
 
@@ -90,7 +92,7 @@ post_processing/
90
92
  ### Basic Usage
91
93
 
92
94
  ```python
93
- from matrice.deploy.utils.post_processing import PostProcessor, process_simple
95
+ from matrice_analytics.post_processing import PostProcessor, process_simple
94
96
 
95
97
  # Method 1: Simple processing (recommended for quick tasks)
96
98
  result = process_simple(
@@ -207,7 +209,7 @@ result = process_simple(
207
209
  All configurations are type-safe dataclasses with built-in validation:
208
210
 
209
211
  ```python
210
- from matrice.deploy.utils.post_processing import PeopleCountingConfig, ZoneConfig
212
+ from matrice_analytics.post_processing import PeopleCountingConfig, ZoneConfig
211
213
 
212
214
  # Create configuration programmatically
213
215
  config = PeopleCountingConfig(
@@ -299,7 +301,7 @@ processor.reset_statistics()
299
301
  1. **Create Use Case Class**:
300
302
 
301
303
  ```python
302
- from matrice.deploy.utils.post_processing.core.base import BaseProcessor
304
+ from matrice_analytics.post_processing.core.base import BaseProcessor
303
305
 
304
306
  class MyCustomUseCase(BaseProcessor):
305
307
  def __init__(self):
@@ -314,7 +316,7 @@ class MyCustomUseCase(BaseProcessor):
314
316
  2. **Register Use Case**:
315
317
 
316
318
  ```python
317
- from matrice.deploy.utils.post_processing.core.base import registry
319
+ from matrice_analytics.post_processing.core.base import registry
318
320
 
319
321
  registry.register_use_case("custom", "my_custom_usecase", MyCustomUseCase)
320
322
  ```
@@ -350,10 +352,10 @@ If you're migrating from the old post-processing system:
350
352
  1. **Update Imports**:
351
353
  ```python
352
354
  # Old
353
- from matrice.deploy.utils.old_post_processing import some_function
355
+ from matrice_analytics.old_post_processing import some_function
354
356
 
355
357
  # New
356
- from matrice.deploy.utils.post_processing import PostProcessor, process_simple
358
+ from matrice_analytics.post_processing import PostProcessor, process_simple
357
359
  ```
358
360
 
359
361
  2. **Update Processing Calls**:
@@ -66,7 +66,7 @@ post_processing/
66
66
  ### Basic Usage
67
67
 
68
68
  ```python
69
- from matrice.deploy.utils.post_processing import PostProcessor, process_simple
69
+ from matrice_analytics.post_processing import PostProcessor, process_simple
70
70
 
71
71
  # Method 1: Simple processing (recommended for quick tasks)
72
72
  result = process_simple(
@@ -183,7 +183,7 @@ result = process_simple(
183
183
  All configurations are type-safe dataclasses with built-in validation:
184
184
 
185
185
  ```python
186
- from matrice.deploy.utils.post_processing import PeopleCountingConfig, ZoneConfig
186
+ from matrice_analytics.post_processing import PeopleCountingConfig, ZoneConfig
187
187
 
188
188
  # Create configuration programmatically
189
189
  config = PeopleCountingConfig(
@@ -275,7 +275,7 @@ processor.reset_statistics()
275
275
  1. **Create Use Case Class**:
276
276
 
277
277
  ```python
278
- from matrice.deploy.utils.post_processing.core.base import BaseProcessor
278
+ from matrice_analytics.post_processing.core.base import BaseProcessor
279
279
 
280
280
  class MyCustomUseCase(BaseProcessor):
281
281
  def __init__(self):
@@ -290,7 +290,7 @@ class MyCustomUseCase(BaseProcessor):
290
290
  2. **Register Use Case**:
291
291
 
292
292
  ```python
293
- from matrice.deploy.utils.post_processing.core.base import registry
293
+ from matrice_analytics.post_processing.core.base import registry
294
294
 
295
295
  registry.register_use_case("custom", "my_custom_usecase", MyCustomUseCase)
296
296
  ```
@@ -326,10 +326,10 @@ If you're migrating from the old post-processing system:
326
326
  1. **Update Imports**:
327
327
  ```python
328
328
  # Old
329
- from matrice.deploy.utils.old_post_processing import some_function
329
+ from matrice_analytics.old_post_processing import some_function
330
330
 
331
331
  # New
332
- from matrice.deploy.utils.post_processing import PostProcessor, process_simple
332
+ from matrice_analytics.post_processing import PostProcessor, process_simple
333
333
  ```
334
334
 
335
335
  2. **Update Processing Calls**:
@@ -1,26 +1,28 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: matrice_analytics
3
- Version: 0.1.0
4
- Summary: Common utilities for Matrice.ai services
3
+ Version: 0.1.2
4
+ Summary: Common server utilities for Matrice.ai services
5
5
  Author-email: "Matrice.ai" <dipendra@matrice.ai>
6
6
  License-Expression: MIT
7
- Keywords: matrice,analytics,utilities,cython,postprocessing,usecases
7
+ Keywords: matrice,common,utilities,pyarmor,obfuscated
8
8
  Classifier: Development Status :: 4 - Beta
9
9
  Classifier: Intended Audience :: Developers
10
+ Classifier: Operating System :: OS Independent
10
11
  Classifier: Operating System :: POSIX :: Linux
12
+ Classifier: Operating System :: Microsoft :: Windows
13
+ Classifier: Operating System :: MacOS
11
14
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
12
- Classifier: Programming Language :: Python :: 3
13
- Classifier: Programming Language :: Python :: 3.7
14
15
  Classifier: Programming Language :: Python :: 3.8
15
16
  Classifier: Programming Language :: Python :: 3.9
16
17
  Classifier: Programming Language :: Python :: 3.10
17
18
  Classifier: Programming Language :: Python :: 3.11
18
19
  Classifier: Programming Language :: Python :: 3.12
19
20
  Classifier: Typing :: Typed
20
- Requires-Python: <4,>=3.7
21
+ Requires-Python: >=3.8
21
22
  Description-Content-Type: text/markdown
22
23
  License-File: LICENSE.txt
23
24
  Dynamic: license-file
25
+ Dynamic: requires-python
24
26
 
25
27
  # Post-Processing Module - Refactored Architecture
26
28
 
@@ -90,7 +92,7 @@ post_processing/
90
92
  ### Basic Usage
91
93
 
92
94
  ```python
93
- from matrice.deploy.utils.post_processing import PostProcessor, process_simple
95
+ from matrice_analytics.post_processing import PostProcessor, process_simple
94
96
 
95
97
  # Method 1: Simple processing (recommended for quick tasks)
96
98
  result = process_simple(
@@ -207,7 +209,7 @@ result = process_simple(
207
209
  All configurations are type-safe dataclasses with built-in validation:
208
210
 
209
211
  ```python
210
- from matrice.deploy.utils.post_processing import PeopleCountingConfig, ZoneConfig
212
+ from matrice_analytics.post_processing import PeopleCountingConfig, ZoneConfig
211
213
 
212
214
  # Create configuration programmatically
213
215
  config = PeopleCountingConfig(
@@ -299,7 +301,7 @@ processor.reset_statistics()
299
301
  1. **Create Use Case Class**:
300
302
 
301
303
  ```python
302
- from matrice.deploy.utils.post_processing.core.base import BaseProcessor
304
+ from matrice_analytics.post_processing.core.base import BaseProcessor
303
305
 
304
306
  class MyCustomUseCase(BaseProcessor):
305
307
  def __init__(self):
@@ -314,7 +316,7 @@ class MyCustomUseCase(BaseProcessor):
314
316
  2. **Register Use Case**:
315
317
 
316
318
  ```python
317
- from matrice.deploy.utils.post_processing.core.base import registry
319
+ from matrice_analytics.post_processing.core.base import registry
318
320
 
319
321
  registry.register_use_case("custom", "my_custom_usecase", MyCustomUseCase)
320
322
  ```
@@ -350,10 +352,10 @@ If you're migrating from the old post-processing system:
350
352
  1. **Update Imports**:
351
353
  ```python
352
354
  # Old
353
- from matrice.deploy.utils.old_post_processing import some_function
355
+ from matrice_analytics.old_post_processing import some_function
354
356
 
355
357
  # New
356
- from matrice.deploy.utils.post_processing import PostProcessor, process_simple
358
+ from matrice_analytics.post_processing import PostProcessor, process_simple
357
359
  ```
358
360
 
359
361
  2. **Update Processing Calls**:
@@ -0,0 +1,163 @@
1
+ LICENSE.txt
2
+ README.md
3
+ pyproject.toml
4
+ setup.py
5
+ matrice_analytics.egg-info/PKG-INFO
6
+ matrice_analytics.egg-info/SOURCES.txt
7
+ matrice_analytics.egg-info/dependency_links.txt
8
+ matrice_analytics.egg-info/not-zip-safe
9
+ matrice_analytics.egg-info/top_level.txt
10
+ src/matrice_analytics/__init__.py
11
+ src/matrice_analytics/py.typed
12
+ src/matrice_analytics/boundary_drawing_internal/README.md
13
+ src/matrice_analytics/boundary_drawing_internal/__init__.py
14
+ src/matrice_analytics/boundary_drawing_internal/boundary_drawing_internal.py
15
+ src/matrice_analytics/boundary_drawing_internal/boundary_drawing_tool.py
16
+ src/matrice_analytics/boundary_drawing_internal/boundary_tool_template.html
17
+ src/matrice_analytics/boundary_drawing_internal/example_usage.py
18
+ src/matrice_analytics/boundary_drawing_internal/usage/README.md
19
+ src/matrice_analytics/boundary_drawing_internal/usage/boundary_drawer_launcher.py
20
+ src/matrice_analytics/boundary_drawing_internal/usage/simple_boundary_launcher.py
21
+ src/matrice_analytics/post_processing/README.md
22
+ src/matrice_analytics/post_processing/__init__.py
23
+ src/matrice_analytics/post_processing/config.py
24
+ src/matrice_analytics/post_processing/post_processor.py
25
+ src/matrice_analytics/post_processing/advanced_tracker/README.md
26
+ src/matrice_analytics/post_processing/advanced_tracker/__init__.py
27
+ src/matrice_analytics/post_processing/advanced_tracker/base.py
28
+ src/matrice_analytics/post_processing/advanced_tracker/config.py
29
+ src/matrice_analytics/post_processing/advanced_tracker/kalman_filter.py
30
+ src/matrice_analytics/post_processing/advanced_tracker/matching.py
31
+ src/matrice_analytics/post_processing/advanced_tracker/strack.py
32
+ src/matrice_analytics/post_processing/advanced_tracker/tracker.py
33
+ src/matrice_analytics/post_processing/core/__init__.py
34
+ src/matrice_analytics/post_processing/core/base.py
35
+ src/matrice_analytics/post_processing/core/config.py
36
+ src/matrice_analytics/post_processing/core/config_utils.py
37
+ src/matrice_analytics/post_processing/face_reg/__init__.py
38
+ src/matrice_analytics/post_processing/face_reg/compare_similarity.py
39
+ src/matrice_analytics/post_processing/face_reg/embedding_manager.py
40
+ src/matrice_analytics/post_processing/face_reg/face_recognition.py
41
+ src/matrice_analytics/post_processing/face_reg/face_recognition_client.py
42
+ src/matrice_analytics/post_processing/face_reg/people_activity_logging.py
43
+ src/matrice_analytics/post_processing/ocr/__init__.py
44
+ src/matrice_analytics/post_processing/ocr/easyocr_extractor.py
45
+ src/matrice_analytics/post_processing/ocr/postprocessing.py
46
+ src/matrice_analytics/post_processing/ocr/preprocessing.py
47
+ src/matrice_analytics/post_processing/test_cases/__init__.py
48
+ src/matrice_analytics/post_processing/test_cases/run_tests.py
49
+ src/matrice_analytics/post_processing/test_cases/test_advanced_customer_service.py
50
+ src/matrice_analytics/post_processing/test_cases/test_basic_counting_tracking.py
51
+ src/matrice_analytics/post_processing/test_cases/test_comprehensive.py
52
+ src/matrice_analytics/post_processing/test_cases/test_config.py
53
+ src/matrice_analytics/post_processing/test_cases/test_customer_service.py
54
+ src/matrice_analytics/post_processing/test_cases/test_data_generators.py
55
+ src/matrice_analytics/post_processing/test_cases/test_people_counting.py
56
+ src/matrice_analytics/post_processing/test_cases/test_processor.py
57
+ src/matrice_analytics/post_processing/test_cases/test_utilities.py
58
+ src/matrice_analytics/post_processing/test_cases/test_utils.py
59
+ src/matrice_analytics/post_processing/usecases/Histopathological_Cancer_Detection_img.py
60
+ src/matrice_analytics/post_processing/usecases/__init__.py
61
+ src/matrice_analytics/post_processing/usecases/abandoned_object_detection.py
62
+ src/matrice_analytics/post_processing/usecases/advanced_customer_service.py
63
+ src/matrice_analytics/post_processing/usecases/age_detection.py
64
+ src/matrice_analytics/post_processing/usecases/age_gender_detection.py
65
+ src/matrice_analytics/post_processing/usecases/anti_spoofing_detection.py
66
+ src/matrice_analytics/post_processing/usecases/assembly_line_detection.py
67
+ src/matrice_analytics/post_processing/usecases/banana_defect_detection.py
68
+ src/matrice_analytics/post_processing/usecases/basic_counting_tracking.py
69
+ src/matrice_analytics/post_processing/usecases/blood_cancer_detection_img.py
70
+ src/matrice_analytics/post_processing/usecases/car_damage_detection.py
71
+ src/matrice_analytics/post_processing/usecases/car_part_segmentation.py
72
+ src/matrice_analytics/post_processing/usecases/car_service.py
73
+ src/matrice_analytics/post_processing/usecases/cardiomegaly_classification.py
74
+ src/matrice_analytics/post_processing/usecases/cell_microscopy_segmentation.py
75
+ src/matrice_analytics/post_processing/usecases/chicken_pose_detection.py
76
+ src/matrice_analytics/post_processing/usecases/child_monitoring.py
77
+ src/matrice_analytics/post_processing/usecases/color_detection.py
78
+ src/matrice_analytics/post_processing/usecases/color_map_utils.py
79
+ src/matrice_analytics/post_processing/usecases/concrete_crack_detection.py
80
+ src/matrice_analytics/post_processing/usecases/crop_weed_detection.py
81
+ src/matrice_analytics/post_processing/usecases/customer_service.py
82
+ src/matrice_analytics/post_processing/usecases/defect_detection_products.py
83
+ src/matrice_analytics/post_processing/usecases/distracted_driver_detection.py
84
+ src/matrice_analytics/post_processing/usecases/drone_traffic_monitoring.py
85
+ src/matrice_analytics/post_processing/usecases/drowsy_driver_detection.py
86
+ src/matrice_analytics/post_processing/usecases/dwell_detection.py
87
+ src/matrice_analytics/post_processing/usecases/emergency_vehicle_detection.py
88
+ src/matrice_analytics/post_processing/usecases/face_emotion.py
89
+ src/matrice_analytics/post_processing/usecases/face_recognition.py
90
+ src/matrice_analytics/post_processing/usecases/fashion_detection.py
91
+ src/matrice_analytics/post_processing/usecases/field_mapping.py
92
+ src/matrice_analytics/post_processing/usecases/fire_detection.py
93
+ src/matrice_analytics/post_processing/usecases/flare_analysis.py
94
+ src/matrice_analytics/post_processing/usecases/flower_segmentation.py
95
+ src/matrice_analytics/post_processing/usecases/gas_leak_detection.py
96
+ src/matrice_analytics/post_processing/usecases/gender_detection.py
97
+ src/matrice_analytics/post_processing/usecases/human_activity_recognition.py
98
+ src/matrice_analytics/post_processing/usecases/intrusion_detection.py
99
+ src/matrice_analytics/post_processing/usecases/leaf.py
100
+ src/matrice_analytics/post_processing/usecases/leaf_disease.py
101
+ src/matrice_analytics/post_processing/usecases/leak_detection.py
102
+ src/matrice_analytics/post_processing/usecases/license_plate_detection.py
103
+ src/matrice_analytics/post_processing/usecases/license_plate_monitoring.py
104
+ src/matrice_analytics/post_processing/usecases/litter_monitoring.py
105
+ src/matrice_analytics/post_processing/usecases/mask_detection.py
106
+ src/matrice_analytics/post_processing/usecases/natural_disaster.py
107
+ src/matrice_analytics/post_processing/usecases/parking.py
108
+ src/matrice_analytics/post_processing/usecases/parking_space_detection.py
109
+ src/matrice_analytics/post_processing/usecases/pcb_defect_detection.py
110
+ src/matrice_analytics/post_processing/usecases/pedestrian_detection.py
111
+ src/matrice_analytics/post_processing/usecases/people_counting.py
112
+ src/matrice_analytics/post_processing/usecases/people_tracking.py
113
+ src/matrice_analytics/post_processing/usecases/pipeline_detection.py
114
+ src/matrice_analytics/post_processing/usecases/plaque_segmentation_img.py
115
+ src/matrice_analytics/post_processing/usecases/pothole_segmentation.py
116
+ src/matrice_analytics/post_processing/usecases/ppe_compliance.py
117
+ src/matrice_analytics/post_processing/usecases/price_tag_detection.py
118
+ src/matrice_analytics/post_processing/usecases/proximity_detection.py
119
+ src/matrice_analytics/post_processing/usecases/road_lane_detection.py
120
+ src/matrice_analytics/post_processing/usecases/road_traffic_density.py
121
+ src/matrice_analytics/post_processing/usecases/road_view_segmentation.py
122
+ src/matrice_analytics/post_processing/usecases/shelf_inventory_detection.py
123
+ src/matrice_analytics/post_processing/usecases/shoplifting_detection.py
124
+ src/matrice_analytics/post_processing/usecases/shopping_cart_analysis.py
125
+ src/matrice_analytics/post_processing/usecases/skin_cancer_classification_img.py
126
+ src/matrice_analytics/post_processing/usecases/smoker_detection.py
127
+ src/matrice_analytics/post_processing/usecases/solar_panel.py
128
+ src/matrice_analytics/post_processing/usecases/suspicious_activity_detection.py
129
+ src/matrice_analytics/post_processing/usecases/template_usecase.py
130
+ src/matrice_analytics/post_processing/usecases/theft_detection.py
131
+ src/matrice_analytics/post_processing/usecases/traffic_sign_monitoring.py
132
+ src/matrice_analytics/post_processing/usecases/underground_pipeline_defect_detection.py
133
+ src/matrice_analytics/post_processing/usecases/underwater_pollution_detection.py
134
+ src/matrice_analytics/post_processing/usecases/vehicle_monitoring.py
135
+ src/matrice_analytics/post_processing/usecases/warehouse_object_segmentation.py
136
+ src/matrice_analytics/post_processing/usecases/waterbody_segmentation.py
137
+ src/matrice_analytics/post_processing/usecases/weapon_detection.py
138
+ src/matrice_analytics/post_processing/usecases/weld_defect_detection.py
139
+ src/matrice_analytics/post_processing/usecases/wildlife_monitoring.py
140
+ src/matrice_analytics/post_processing/usecases/windmill_maintenance.py
141
+ src/matrice_analytics/post_processing/usecases/wound_segmentation.py
142
+ src/matrice_analytics/post_processing/usecases/color/clip.py
143
+ src/matrice_analytics/post_processing/usecases/color/color_map_utils.py
144
+ src/matrice_analytics/post_processing/usecases/color/color_mapper.py
145
+ src/matrice_analytics/post_processing/usecases/color/clip_processor/merges.txt
146
+ src/matrice_analytics/post_processing/usecases/color/clip_processor/preprocessor_config.json
147
+ src/matrice_analytics/post_processing/usecases/color/clip_processor/special_tokens_map.json
148
+ src/matrice_analytics/post_processing/usecases/color/clip_processor/tokenizer.json
149
+ src/matrice_analytics/post_processing/usecases/color/clip_processor/tokenizer_config.json
150
+ src/matrice_analytics/post_processing/usecases/color/clip_processor/vocab.json
151
+ src/matrice_analytics/post_processing/utils/__init__.py
152
+ src/matrice_analytics/post_processing/utils/advanced_counting_utils.py
153
+ src/matrice_analytics/post_processing/utils/advanced_helper_utils.py
154
+ src/matrice_analytics/post_processing/utils/advanced_tracking_utils.py
155
+ src/matrice_analytics/post_processing/utils/alerting_utils.py
156
+ src/matrice_analytics/post_processing/utils/category_mapping_utils.py
157
+ src/matrice_analytics/post_processing/utils/color_utils.py
158
+ src/matrice_analytics/post_processing/utils/counting_utils.py
159
+ src/matrice_analytics/post_processing/utils/filter_utils.py
160
+ src/matrice_analytics/post_processing/utils/format_utils.py
161
+ src/matrice_analytics/post_processing/utils/geometry_utils.py
162
+ src/matrice_analytics/post_processing/utils/smoothing_utils.py
163
+ src/matrice_analytics/post_processing/utils/tracking_utils.py
@@ -1,28 +1,32 @@
1
1
  [build-system]
2
- requires = ["setuptools>=77.0.0", "wheel", "Cython>=3.0.0"]
2
+ requires = ["setuptools>=65.0.0", "wheel", "pyarmor>=8.0.0"]
3
3
  build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "matrice_analytics"
7
- version = "0.1.0"
8
- description = "Common utilities for Matrice.ai services"
7
+ dynamic = ["version"]
8
+ description = "Common server utilities for Matrice.ai services"
9
9
  readme = "README.md"
10
10
  authors = [{ name = "Matrice.ai", email = "dipendra@matrice.ai" }]
11
11
  license = "MIT"
12
- license-files = ["LICENSE.txt"]
13
- requires-python = ">=3.7, <4"
14
- keywords = ["matrice", "analytics", "utilities", "cython", "postprocessing", "usecases"]
12
+ requires-python = ">=3.8, <4"
13
+ keywords = ["matrice", "common", "utilities", "pyarmor", "obfuscated"]
15
14
  classifiers = [
16
15
  "Development Status :: 4 - Beta",
17
16
  "Intended Audience :: Developers",
17
+ "Operating System :: OS Independent",
18
18
  "Operating System :: POSIX :: Linux",
19
+ "Operating System :: Microsoft :: Windows",
20
+ "Operating System :: MacOS",
19
21
  "Topic :: Software Development :: Libraries :: Python Modules",
20
- "Programming Language :: Python :: 3",
21
- "Programming Language :: Python :: 3.7",
22
22
  "Programming Language :: Python :: 3.8",
23
23
  "Programming Language :: Python :: 3.9",
24
24
  "Programming Language :: Python :: 3.10",
25
25
  "Programming Language :: Python :: 3.11",
26
26
  "Programming Language :: Python :: 3.12",
27
27
  "Typing :: Typed",
28
- ]
28
+ ]
29
+
30
+
31
+ # PyArmor configuration is handled via pyarmor.yml file
32
+ # The [tool.pyarmor] section is not used in PyArmor 8.x