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.
- {matrice_analytics-0.1.0 → matrice_analytics-0.1.2}/PKG-INFO +14 -12
- {matrice_analytics-0.1.0 → matrice_analytics-0.1.2}/README.md +6 -6
- {matrice_analytics-0.1.0 → matrice_analytics-0.1.2}/matrice_analytics.egg-info/PKG-INFO +14 -12
- matrice_analytics-0.1.2/matrice_analytics.egg-info/SOURCES.txt +163 -0
- {matrice_analytics-0.1.0 → matrice_analytics-0.1.2}/pyproject.toml +13 -9
- matrice_analytics-0.1.2/setup.py +322 -0
- matrice_analytics-0.1.2/src/matrice_analytics/__init__.py +28 -0
- matrice_analytics-0.1.2/src/matrice_analytics/boundary_drawing_internal/README.md +305 -0
- matrice_analytics-0.1.2/src/matrice_analytics/boundary_drawing_internal/__init__.py +45 -0
- matrice_analytics-0.1.2/src/matrice_analytics/boundary_drawing_internal/boundary_drawing_internal.py +1207 -0
- matrice_analytics-0.1.2/src/matrice_analytics/boundary_drawing_internal/boundary_drawing_tool.py +429 -0
- matrice_analytics-0.1.2/src/matrice_analytics/boundary_drawing_internal/boundary_tool_template.html +1036 -0
- matrice_analytics-0.1.2/src/matrice_analytics/boundary_drawing_internal/example_usage.py +206 -0
- matrice_analytics-0.1.2/src/matrice_analytics/boundary_drawing_internal/usage/README.md +110 -0
- matrice_analytics-0.1.2/src/matrice_analytics/boundary_drawing_internal/usage/boundary_drawer_launcher.py +102 -0
- matrice_analytics-0.1.2/src/matrice_analytics/boundary_drawing_internal/usage/simple_boundary_launcher.py +107 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/README.md +455 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/__init__.py +732 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/advanced_tracker/README.md +650 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/advanced_tracker/__init__.py +17 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/advanced_tracker/base.py +99 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/advanced_tracker/config.py +77 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/advanced_tracker/kalman_filter.py +370 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/advanced_tracker/matching.py +195 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/advanced_tracker/strack.py +230 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/advanced_tracker/tracker.py +367 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/config.py +142 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/core/__init__.py +63 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/core/base.py +704 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/core/config.py +3188 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/core/config_utils.py +925 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/face_reg/__init__.py +43 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/face_reg/compare_similarity.py +556 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/face_reg/embedding_manager.py +681 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/face_reg/face_recognition.py +1870 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/face_reg/face_recognition_client.py +339 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/face_reg/people_activity_logging.py +283 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/ocr/easyocr_extractor.py +248 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/ocr/postprocessing.py +271 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/ocr/preprocessing.py +52 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/post_processor.py +1153 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/__init__.py +1 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/run_tests.py +143 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/test_advanced_customer_service.py +841 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/test_basic_counting_tracking.py +523 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/test_comprehensive.py +531 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/test_config.py +852 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/test_customer_service.py +585 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/test_data_generators.py +583 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/test_people_counting.py +510 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/test_processor.py +524 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/test_utilities.py +356 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/test_cases/test_utils.py +743 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/Histopathological_Cancer_Detection_img.py +604 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/__init__.py +267 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/abandoned_object_detection.py +797 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/advanced_customer_service.py +1601 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/age_detection.py +842 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/age_gender_detection.py +1043 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/anti_spoofing_detection.py +656 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/assembly_line_detection.py +841 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/banana_defect_detection.py +624 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/basic_counting_tracking.py +667 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/blood_cancer_detection_img.py +881 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/car_damage_detection.py +834 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/car_part_segmentation.py +946 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/car_service.py +1601 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/cardiomegaly_classification.py +864 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/cell_microscopy_segmentation.py +897 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/chicken_pose_detection.py +648 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/child_monitoring.py +814 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/color/clip.py +232 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/color/clip_processor/merges.txt +48895 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/color/clip_processor/preprocessor_config.json +28 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/color/clip_processor/special_tokens_map.json +30 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/color/clip_processor/tokenizer.json +245079 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/color/clip_processor/tokenizer_config.json +32 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/color/clip_processor/vocab.json +1 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/color/color_map_utils.py +70 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/color/color_mapper.py +468 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/color_detection.py +1835 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/color_map_utils.py +70 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/concrete_crack_detection.py +827 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/crop_weed_detection.py +781 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/customer_service.py +1008 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/defect_detection_products.py +936 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/distracted_driver_detection.py +822 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/drone_traffic_monitoring.py +930 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/drowsy_driver_detection.py +829 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/dwell_detection.py +829 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/emergency_vehicle_detection.py +827 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/face_emotion.py +813 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/face_recognition.py +827 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/fashion_detection.py +835 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/field_mapping.py +902 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/fire_detection.py +1112 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/flare_analysis.py +891 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/flower_segmentation.py +1006 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/gas_leak_detection.py +837 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/gender_detection.py +832 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/human_activity_recognition.py +871 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/intrusion_detection.py +1672 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/leaf.py +821 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/leaf_disease.py +840 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/leak_detection.py +837 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/license_plate_detection.py +914 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/license_plate_monitoring.py +1194 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/litter_monitoring.py +717 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/mask_detection.py +869 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/natural_disaster.py +907 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/parking.py +787 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/parking_space_detection.py +822 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/pcb_defect_detection.py +888 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/pedestrian_detection.py +808 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/people_counting.py +1728 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/people_tracking.py +1842 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/pipeline_detection.py +605 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/plaque_segmentation_img.py +874 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/pothole_segmentation.py +915 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/ppe_compliance.py +645 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/price_tag_detection.py +822 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/proximity_detection.py +1901 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/road_lane_detection.py +623 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/road_traffic_density.py +832 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/road_view_segmentation.py +915 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/shelf_inventory_detection.py +583 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/shoplifting_detection.py +822 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/shopping_cart_analysis.py +899 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/skin_cancer_classification_img.py +864 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/smoker_detection.py +833 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/solar_panel.py +810 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/suspicious_activity_detection.py +1030 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/template_usecase.py +380 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/theft_detection.py +648 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/traffic_sign_monitoring.py +724 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/underground_pipeline_defect_detection.py +775 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/underwater_pollution_detection.py +842 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/vehicle_monitoring.py +950 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/warehouse_object_segmentation.py +899 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/waterbody_segmentation.py +923 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/weapon_detection.py +771 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/weld_defect_detection.py +615 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/wildlife_monitoring.py +898 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/windmill_maintenance.py +834 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/usecases/wound_segmentation.py +856 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/__init__.py +150 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/advanced_counting_utils.py +400 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/advanced_helper_utils.py +317 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/advanced_tracking_utils.py +461 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/alerting_utils.py +213 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/category_mapping_utils.py +94 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/color_utils.py +592 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/counting_utils.py +182 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/filter_utils.py +261 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/format_utils.py +293 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/geometry_utils.py +300 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/smoothing_utils.py +358 -0
- matrice_analytics-0.1.2/src/matrice_analytics/post_processing/utils/tracking_utils.py +234 -0
- matrice_analytics-0.1.0/matrice_analytics.egg-info/SOURCES.txt +0 -123
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/__init__.pyi +0 -14
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/advanced_tracker/base.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/advanced_tracker/config.cpython-312-x86_64-linux-gnu.so +0 -0
- 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
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/advanced_tracker/matching.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/advanced_tracker/strack.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/advanced_tracker/tracker.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/config.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/core/base.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/core/config.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/core/config_utils.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/ocr/easyocr_extractor.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/ocr/postprocessing.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/ocr/preprocessing.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/processor.cpython-312-x86_64-linux-gnu.so +0 -0
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/age_detection.cpython-312-x86_64-linux-gnu.so +0 -0
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/car_service.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/cardiomegaly_classification.cpython-312-x86_64-linux-gnu.so +0 -0
- 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
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/child_monitoring.cpython-312-x86_64-linux-gnu.so +0 -0
- 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
- 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
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/color_detection.cpython-312-x86_64-linux-gnu.so +0 -0
- 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
- 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
- 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
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/customer_service.cpython-312-x86_64-linux-gnu.so +0 -0
- 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
- 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
- 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
- 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
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/face_emotion.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/face_recognition.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/fashion_detection.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/field_mapping.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/fire_detection.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/flare_analysis.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/flower_segmentation.cpython-312-x86_64-linux-gnu.so +0 -0
- 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
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/gender_detection.cpython-312-x86_64-linux-gnu.so +0 -0
- 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
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/intrusion_detection.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/leaf.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/leaf_disease.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/leak_detection.cpython-312-x86_64-linux-gnu.so +0 -0
- 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
- 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
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/litter_monitoring.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/mask_detection.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/parking.cpython-312-x86_64-linux-gnu.so +0 -0
- 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
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/pedestrian_detection.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/people_counting.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/pipeline_detection.cpython-312-x86_64-linux-gnu.so +0 -0
- 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
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/pothole_segmentation.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/ppe_compliance.cpython-312-x86_64-linux-gnu.so +0 -0
- 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
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/proximity_detection.cpython-312-x86_64-linux-gnu.so +0 -0
- 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
- 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
- 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
- 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
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/shoplifting_detection.cpython-312-x86_64-linux-gnu.so +0 -0
- 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
- 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
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/smoker_detection.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/solar_panel.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/template_usecase.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/theft_detection.cpython-312-x86_64-linux-gnu.so +0 -0
- 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
- 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
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/vehicle_monitoring.cpython-312-x86_64-linux-gnu.so +0 -0
- 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
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/waterbody_segmentation.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/weapon_detection.cpython-312-x86_64-linux-gnu.so +0 -0
- 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
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/windmill_maintenance.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/usecases/wound_segmentation.cpython-312-x86_64-linux-gnu.so +0 -0
- 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
- 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
- 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
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/utils/alerting_utils.cpython-312-x86_64-linux-gnu.so +0 -0
- 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
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/utils/color_utils.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/utils/counting_utils.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/utils/filter_utils.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/utils/format_utils.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/utils/geometry_utils.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/utils/smoothing_utils.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/matrice_analytics_compiled/matrice_analytics/post_processing/utils/tracking_utils.cpython-312-x86_64-linux-gnu.so +0 -0
- matrice_analytics-0.1.0/setup.py +0 -198
- {matrice_analytics-0.1.0 → matrice_analytics-0.1.2}/LICENSE.txt +0 -0
- {matrice_analytics-0.1.0 → matrice_analytics-0.1.2}/matrice_analytics.egg-info/dependency_links.txt +0 -0
- {matrice_analytics-0.1.0 → matrice_analytics-0.1.2}/matrice_analytics.egg-info/not-zip-safe +0 -0
- {matrice_analytics-0.1.0 → matrice_analytics-0.1.2}/matrice_analytics.egg-info/top_level.txt +0 -0
- {matrice_analytics-0.1.0 → matrice_analytics-0.1.2}/setup.cfg +0 -0
- {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
- {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.
|
|
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,
|
|
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:
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
355
|
+
from matrice_analytics.old_post_processing import some_function
|
|
354
356
|
|
|
355
357
|
# New
|
|
356
|
-
from
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
329
|
+
from matrice_analytics.old_post_processing import some_function
|
|
330
330
|
|
|
331
331
|
# New
|
|
332
|
-
from
|
|
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.
|
|
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,
|
|
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:
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
355
|
+
from matrice_analytics.old_post_processing import some_function
|
|
354
356
|
|
|
355
357
|
# New
|
|
356
|
-
from
|
|
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>=
|
|
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
|
-
|
|
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
|
-
|
|
13
|
-
|
|
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
|