matrice-analytics 0.1.60__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- matrice_analytics/__init__.py +28 -0
- matrice_analytics/boundary_drawing_internal/README.md +305 -0
- matrice_analytics/boundary_drawing_internal/__init__.py +45 -0
- matrice_analytics/boundary_drawing_internal/boundary_drawing_internal.py +1207 -0
- matrice_analytics/boundary_drawing_internal/boundary_drawing_tool.py +429 -0
- matrice_analytics/boundary_drawing_internal/boundary_tool_template.html +1036 -0
- matrice_analytics/boundary_drawing_internal/data/.gitignore +12 -0
- matrice_analytics/boundary_drawing_internal/example_usage.py +206 -0
- matrice_analytics/boundary_drawing_internal/usage/README.md +110 -0
- matrice_analytics/boundary_drawing_internal/usage/boundary_drawer_launcher.py +102 -0
- matrice_analytics/boundary_drawing_internal/usage/simple_boundary_launcher.py +107 -0
- matrice_analytics/post_processing/README.md +455 -0
- matrice_analytics/post_processing/__init__.py +732 -0
- matrice_analytics/post_processing/advanced_tracker/README.md +650 -0
- matrice_analytics/post_processing/advanced_tracker/__init__.py +17 -0
- matrice_analytics/post_processing/advanced_tracker/base.py +99 -0
- matrice_analytics/post_processing/advanced_tracker/config.py +77 -0
- matrice_analytics/post_processing/advanced_tracker/kalman_filter.py +370 -0
- matrice_analytics/post_processing/advanced_tracker/matching.py +195 -0
- matrice_analytics/post_processing/advanced_tracker/strack.py +230 -0
- matrice_analytics/post_processing/advanced_tracker/tracker.py +367 -0
- matrice_analytics/post_processing/config.py +146 -0
- matrice_analytics/post_processing/core/__init__.py +63 -0
- matrice_analytics/post_processing/core/base.py +704 -0
- matrice_analytics/post_processing/core/config.py +3291 -0
- matrice_analytics/post_processing/core/config_utils.py +925 -0
- matrice_analytics/post_processing/face_reg/__init__.py +43 -0
- matrice_analytics/post_processing/face_reg/compare_similarity.py +556 -0
- matrice_analytics/post_processing/face_reg/embedding_manager.py +950 -0
- matrice_analytics/post_processing/face_reg/face_recognition.py +2234 -0
- matrice_analytics/post_processing/face_reg/face_recognition_client.py +606 -0
- matrice_analytics/post_processing/face_reg/people_activity_logging.py +321 -0
- matrice_analytics/post_processing/ocr/__init__.py +0 -0
- matrice_analytics/post_processing/ocr/easyocr_extractor.py +250 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/__init__.py +9 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/cli/__init__.py +4 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/cli/cli.py +33 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/cli/dataset_stats.py +139 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/cli/export.py +398 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/cli/train.py +447 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/cli/utils.py +129 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/cli/valid.py +93 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/cli/validate_dataset.py +240 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/cli/visualize_augmentation.py +176 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/cli/visualize_predictions.py +96 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/core/__init__.py +3 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/core/process.py +246 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/core/types.py +60 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/core/utils.py +87 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/inference/__init__.py +3 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/inference/config.py +82 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/inference/hub.py +141 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/inference/plate_recognizer.py +323 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/py.typed +0 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/train/__init__.py +0 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/train/data/__init__.py +0 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/train/data/augmentation.py +101 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/train/data/dataset.py +97 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/train/model/__init__.py +0 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/train/model/config.py +114 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/train/model/layers.py +553 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/train/model/loss.py +55 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/train/model/metric.py +86 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/train/model/model_builders.py +95 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/train/model/model_schema.py +395 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/train/utilities/__init__.py +0 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/train/utilities/backend_utils.py +38 -0
- matrice_analytics/post_processing/ocr/fast_plate_ocr_py38/train/utilities/utils.py +214 -0
- matrice_analytics/post_processing/ocr/postprocessing.py +270 -0
- matrice_analytics/post_processing/ocr/preprocessing.py +52 -0
- matrice_analytics/post_processing/post_processor.py +1175 -0
- matrice_analytics/post_processing/test_cases/__init__.py +1 -0
- matrice_analytics/post_processing/test_cases/run_tests.py +143 -0
- matrice_analytics/post_processing/test_cases/test_advanced_customer_service.py +841 -0
- matrice_analytics/post_processing/test_cases/test_basic_counting_tracking.py +523 -0
- matrice_analytics/post_processing/test_cases/test_comprehensive.py +531 -0
- matrice_analytics/post_processing/test_cases/test_config.py +852 -0
- matrice_analytics/post_processing/test_cases/test_customer_service.py +585 -0
- matrice_analytics/post_processing/test_cases/test_data_generators.py +583 -0
- matrice_analytics/post_processing/test_cases/test_people_counting.py +510 -0
- matrice_analytics/post_processing/test_cases/test_processor.py +524 -0
- matrice_analytics/post_processing/test_cases/test_usecases.py +165 -0
- matrice_analytics/post_processing/test_cases/test_utilities.py +356 -0
- matrice_analytics/post_processing/test_cases/test_utils.py +743 -0
- matrice_analytics/post_processing/usecases/Histopathological_Cancer_Detection_img.py +604 -0
- matrice_analytics/post_processing/usecases/__init__.py +267 -0
- matrice_analytics/post_processing/usecases/abandoned_object_detection.py +797 -0
- matrice_analytics/post_processing/usecases/advanced_customer_service.py +1601 -0
- matrice_analytics/post_processing/usecases/age_detection.py +842 -0
- matrice_analytics/post_processing/usecases/age_gender_detection.py +1085 -0
- matrice_analytics/post_processing/usecases/anti_spoofing_detection.py +656 -0
- matrice_analytics/post_processing/usecases/assembly_line_detection.py +841 -0
- matrice_analytics/post_processing/usecases/banana_defect_detection.py +624 -0
- matrice_analytics/post_processing/usecases/basic_counting_tracking.py +667 -0
- matrice_analytics/post_processing/usecases/blood_cancer_detection_img.py +881 -0
- matrice_analytics/post_processing/usecases/car_damage_detection.py +834 -0
- matrice_analytics/post_processing/usecases/car_part_segmentation.py +946 -0
- matrice_analytics/post_processing/usecases/car_service.py +1601 -0
- matrice_analytics/post_processing/usecases/cardiomegaly_classification.py +864 -0
- matrice_analytics/post_processing/usecases/cell_microscopy_segmentation.py +897 -0
- matrice_analytics/post_processing/usecases/chicken_pose_detection.py +648 -0
- matrice_analytics/post_processing/usecases/child_monitoring.py +814 -0
- matrice_analytics/post_processing/usecases/color/clip.py +660 -0
- matrice_analytics/post_processing/usecases/color/clip_processor/merges.txt +48895 -0
- matrice_analytics/post_processing/usecases/color/clip_processor/preprocessor_config.json +28 -0
- matrice_analytics/post_processing/usecases/color/clip_processor/special_tokens_map.json +30 -0
- matrice_analytics/post_processing/usecases/color/clip_processor/tokenizer.json +245079 -0
- matrice_analytics/post_processing/usecases/color/clip_processor/tokenizer_config.json +32 -0
- matrice_analytics/post_processing/usecases/color/clip_processor/vocab.json +1 -0
- matrice_analytics/post_processing/usecases/color/color_map_utils.py +70 -0
- matrice_analytics/post_processing/usecases/color/color_mapper.py +468 -0
- matrice_analytics/post_processing/usecases/color_detection.py +1936 -0
- matrice_analytics/post_processing/usecases/color_map_utils.py +70 -0
- matrice_analytics/post_processing/usecases/concrete_crack_detection.py +827 -0
- matrice_analytics/post_processing/usecases/crop_weed_detection.py +781 -0
- matrice_analytics/post_processing/usecases/customer_service.py +1008 -0
- matrice_analytics/post_processing/usecases/defect_detection_products.py +936 -0
- matrice_analytics/post_processing/usecases/distracted_driver_detection.py +822 -0
- matrice_analytics/post_processing/usecases/drone_traffic_monitoring.py +585 -0
- matrice_analytics/post_processing/usecases/drowsy_driver_detection.py +829 -0
- matrice_analytics/post_processing/usecases/dwell_detection.py +829 -0
- matrice_analytics/post_processing/usecases/emergency_vehicle_detection.py +827 -0
- matrice_analytics/post_processing/usecases/face_emotion.py +813 -0
- matrice_analytics/post_processing/usecases/face_recognition.py +827 -0
- matrice_analytics/post_processing/usecases/fashion_detection.py +835 -0
- matrice_analytics/post_processing/usecases/field_mapping.py +902 -0
- matrice_analytics/post_processing/usecases/fire_detection.py +1146 -0
- matrice_analytics/post_processing/usecases/flare_analysis.py +836 -0
- matrice_analytics/post_processing/usecases/flower_segmentation.py +1006 -0
- matrice_analytics/post_processing/usecases/gas_leak_detection.py +837 -0
- matrice_analytics/post_processing/usecases/gender_detection.py +832 -0
- matrice_analytics/post_processing/usecases/human_activity_recognition.py +871 -0
- matrice_analytics/post_processing/usecases/intrusion_detection.py +1672 -0
- matrice_analytics/post_processing/usecases/leaf.py +821 -0
- matrice_analytics/post_processing/usecases/leaf_disease.py +840 -0
- matrice_analytics/post_processing/usecases/leak_detection.py +837 -0
- matrice_analytics/post_processing/usecases/license_plate_detection.py +1188 -0
- matrice_analytics/post_processing/usecases/license_plate_monitoring.py +1781 -0
- matrice_analytics/post_processing/usecases/litter_monitoring.py +717 -0
- matrice_analytics/post_processing/usecases/mask_detection.py +869 -0
- matrice_analytics/post_processing/usecases/natural_disaster.py +907 -0
- matrice_analytics/post_processing/usecases/parking.py +787 -0
- matrice_analytics/post_processing/usecases/parking_space_detection.py +822 -0
- matrice_analytics/post_processing/usecases/pcb_defect_detection.py +888 -0
- matrice_analytics/post_processing/usecases/pedestrian_detection.py +808 -0
- matrice_analytics/post_processing/usecases/people_counting.py +706 -0
- matrice_analytics/post_processing/usecases/people_counting_bckp.py +1683 -0
- matrice_analytics/post_processing/usecases/people_tracking.py +1842 -0
- matrice_analytics/post_processing/usecases/pipeline_detection.py +605 -0
- matrice_analytics/post_processing/usecases/plaque_segmentation_img.py +874 -0
- matrice_analytics/post_processing/usecases/pothole_segmentation.py +915 -0
- matrice_analytics/post_processing/usecases/ppe_compliance.py +645 -0
- matrice_analytics/post_processing/usecases/price_tag_detection.py +822 -0
- matrice_analytics/post_processing/usecases/proximity_detection.py +1901 -0
- matrice_analytics/post_processing/usecases/road_lane_detection.py +623 -0
- matrice_analytics/post_processing/usecases/road_traffic_density.py +832 -0
- matrice_analytics/post_processing/usecases/road_view_segmentation.py +915 -0
- matrice_analytics/post_processing/usecases/shelf_inventory_detection.py +583 -0
- matrice_analytics/post_processing/usecases/shoplifting_detection.py +822 -0
- matrice_analytics/post_processing/usecases/shopping_cart_analysis.py +899 -0
- matrice_analytics/post_processing/usecases/skin_cancer_classification_img.py +864 -0
- matrice_analytics/post_processing/usecases/smoker_detection.py +833 -0
- matrice_analytics/post_processing/usecases/solar_panel.py +810 -0
- matrice_analytics/post_processing/usecases/suspicious_activity_detection.py +1030 -0
- matrice_analytics/post_processing/usecases/template_usecase.py +380 -0
- matrice_analytics/post_processing/usecases/theft_detection.py +648 -0
- matrice_analytics/post_processing/usecases/traffic_sign_monitoring.py +724 -0
- matrice_analytics/post_processing/usecases/underground_pipeline_defect_detection.py +775 -0
- matrice_analytics/post_processing/usecases/underwater_pollution_detection.py +842 -0
- matrice_analytics/post_processing/usecases/vehicle_monitoring.py +1029 -0
- matrice_analytics/post_processing/usecases/warehouse_object_segmentation.py +899 -0
- matrice_analytics/post_processing/usecases/waterbody_segmentation.py +923 -0
- matrice_analytics/post_processing/usecases/weapon_detection.py +771 -0
- matrice_analytics/post_processing/usecases/weld_defect_detection.py +615 -0
- matrice_analytics/post_processing/usecases/wildlife_monitoring.py +898 -0
- matrice_analytics/post_processing/usecases/windmill_maintenance.py +834 -0
- matrice_analytics/post_processing/usecases/wound_segmentation.py +856 -0
- matrice_analytics/post_processing/utils/__init__.py +150 -0
- matrice_analytics/post_processing/utils/advanced_counting_utils.py +400 -0
- matrice_analytics/post_processing/utils/advanced_helper_utils.py +317 -0
- matrice_analytics/post_processing/utils/advanced_tracking_utils.py +461 -0
- matrice_analytics/post_processing/utils/alerting_utils.py +213 -0
- matrice_analytics/post_processing/utils/category_mapping_utils.py +94 -0
- matrice_analytics/post_processing/utils/color_utils.py +592 -0
- matrice_analytics/post_processing/utils/counting_utils.py +182 -0
- matrice_analytics/post_processing/utils/filter_utils.py +261 -0
- matrice_analytics/post_processing/utils/format_utils.py +293 -0
- matrice_analytics/post_processing/utils/geometry_utils.py +300 -0
- matrice_analytics/post_processing/utils/smoothing_utils.py +358 -0
- matrice_analytics/post_processing/utils/tracking_utils.py +234 -0
- matrice_analytics/py.typed +0 -0
- matrice_analytics-0.1.60.dist-info/METADATA +481 -0
- matrice_analytics-0.1.60.dist-info/RECORD +196 -0
- matrice_analytics-0.1.60.dist-info/WHEEL +5 -0
- matrice_analytics-0.1.60.dist-info/licenses/LICENSE.txt +21 -0
- matrice_analytics-0.1.60.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,267 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Use case implementations for post-processing.
|
|
3
|
+
|
|
4
|
+
This module contains all available use case processors for different
|
|
5
|
+
post-processing scenarios.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
from .people_counting import PeopleCountingUseCase, PeopleCountingConfig
|
|
9
|
+
from .intrusion_detection import IntrusionUseCase, IntrusionConfig
|
|
10
|
+
from .proximity_detection import ProximityUseCase, ProximityConfig
|
|
11
|
+
from .customer_service import CustomerServiceUseCase, CustomerServiceConfig
|
|
12
|
+
from .advanced_customer_service import AdvancedCustomerServiceUseCase
|
|
13
|
+
from .basic_counting_tracking import BasicCountingTrackingUseCase
|
|
14
|
+
from .license_plate_detection import LicensePlateUseCase, LicensePlateConfig
|
|
15
|
+
from .color_detection import ColorDetectionUseCase, ColorDetectionConfig
|
|
16
|
+
from .ppe_compliance import PPEComplianceUseCase, PPEComplianceConfig
|
|
17
|
+
from .vehicle_monitoring import VehicleMonitoringUseCase, VehicleMonitoringConfig
|
|
18
|
+
from .fire_detection import FireSmokeUseCase, FireSmokeConfig
|
|
19
|
+
from .flare_analysis import FlareAnalysisUseCase,FlareAnalysisConfig
|
|
20
|
+
from .pothole_segmentation import PotholeSegmentationUseCase, PotholeConfig
|
|
21
|
+
from .face_emotion import FaceEmotionUseCase, FaceEmotionConfig
|
|
22
|
+
from .parking_space_detection import ParkingSpaceConfig, ParkingSpaceUseCase
|
|
23
|
+
from .underwater_pollution_detection import UnderwaterPlasticUseCase, UnderwaterPlasticConfig
|
|
24
|
+
from .pedestrian_detection import PedestrianDetectionUseCase, PedestrianDetectionConfig
|
|
25
|
+
from .age_detection import AgeDetectionUseCase, AgeDetectionConfig
|
|
26
|
+
|
|
27
|
+
from .weld_defect_detection import WeldDefectConfig,WeldDefectUseCase
|
|
28
|
+
from .banana_defect_detection import BananaMonitoringUseCase,BananaMonitoringConfig
|
|
29
|
+
|
|
30
|
+
from .car_damage_detection import CarDamageConfig, CarDamageDetectionUseCase
|
|
31
|
+
from .price_tag_detection import PriceTagConfig, PriceTagUseCase
|
|
32
|
+
from .mask_detection import MaskDetectionConfig, MaskDetectionUseCase
|
|
33
|
+
from .pipeline_detection import PipelineDetectionConfig, PipelineDetectionUseCase
|
|
34
|
+
from .distracted_driver_detection import DistractedDriverUseCase, DistractedDriverConfig
|
|
35
|
+
from .emergency_vehicle_detection import EmergencyVehicleUseCase, EmergencyVehicleConfig
|
|
36
|
+
from .solar_panel import SolarPanelUseCase, SolarPanelConfig
|
|
37
|
+
from .chicken_pose_detection import ChickenPoseDetectionConfig,ChickenPoseDetectionUseCase
|
|
38
|
+
from .traffic_sign_monitoring import TrafficSignMonitoringConfig, TrafficSignMonitoringUseCase
|
|
39
|
+
from .theft_detection import TheftDetectionConfig , TheftDetectionUseCase
|
|
40
|
+
from .crop_weed_detection import CropWeedDetectionConfig, CropWeedDetectionUseCase
|
|
41
|
+
from .child_monitoring import ChildMonitoringUseCase, ChildMonitoringConfig
|
|
42
|
+
from .gender_detection import GenderDetectionUseCase, GenderDetectionConfig
|
|
43
|
+
from .weapon_detection import WeaponDetectionConfig,WeaponDetectionUseCase
|
|
44
|
+
from .concrete_crack_detection import ConcreteCrackUseCase, ConcreteCrackConfig
|
|
45
|
+
from .fashion_detection import FashionDetectionUseCase, FashionDetectionConfig
|
|
46
|
+
|
|
47
|
+
from .warehouse_object_segmentation import WarehouseObjectUseCase, WarehouseObjectConfig
|
|
48
|
+
from .shopping_cart_analysis import ShoppingCartUseCase, ShoppingCartConfig
|
|
49
|
+
|
|
50
|
+
from .shoplifting_detection import ShopliftingDetectionConfig, ShopliftingDetectionUseCase
|
|
51
|
+
from .defect_detection_products import BottleDefectUseCase, BottleDefectConfig
|
|
52
|
+
from .assembly_line_detection import AssemblyLineUseCase, AssemblyLineConfig
|
|
53
|
+
from .anti_spoofing_detection import AntiSpoofingDetectionConfig, AntiSpoofingDetectionUseCase
|
|
54
|
+
from .shelf_inventory_detection import ShelfInventoryUseCase,ShelfInventoryConfig
|
|
55
|
+
from .car_part_segmentation import CarPartSegmentationUseCase, CarPartSegmentationConfig
|
|
56
|
+
from .road_lane_detection import LaneDetectionConfig , LaneDetectionUseCase
|
|
57
|
+
|
|
58
|
+
from .windmill_maintenance import WindmillMaintenanceUseCase, WindmillMaintenanceConfig
|
|
59
|
+
|
|
60
|
+
from .field_mapping import FieldMappingConfig, FieldMappingUseCase
|
|
61
|
+
from .wound_segmentation import WoundConfig, WoundSegmentationUseCase
|
|
62
|
+
from .leaf_disease import LeafDiseaseDetectionConfig, LeafDiseaseDetectionUseCase
|
|
63
|
+
from .flower_segmentation import FlowerUseCase, FlowerConfig
|
|
64
|
+
from .parking import ParkingConfig, ParkingUseCase
|
|
65
|
+
from .leaf import LeafConfig, LeafUseCase
|
|
66
|
+
from .smoker_detection import SmokerDetectionConfig, SmokerDetectionUseCase
|
|
67
|
+
from .road_traffic_density import RoadTrafficConfig, RoadTrafficUseCase
|
|
68
|
+
from .road_view_segmentation import RoadViewSegmentationConfig, RoadViewSegmentationUseCase
|
|
69
|
+
# from .face_recognition import FaceRecognitionConfig, FaceRecognitionUseCase
|
|
70
|
+
from .drowsy_driver_detection import DrowsyDriverUseCase, DrowsyDriverUseCase
|
|
71
|
+
from .waterbody_segmentation import WaterBodyConfig, WaterBodyUseCase
|
|
72
|
+
from .litter_monitoring import LitterDetectionConfig,LitterDetectionUseCase
|
|
73
|
+
from .abandoned_object_detection import AbandonedObjectConfig,AbandonedObjectDetectionUseCase
|
|
74
|
+
|
|
75
|
+
from .litter_monitoring import LitterDetectionConfig, LitterDetectionUseCase
|
|
76
|
+
from .leak_detection import LeakDetectionConfig, LeakDetectionUseCase
|
|
77
|
+
from .human_activity_recognition import HumanActivityConfig, HumanActivityUseCase
|
|
78
|
+
from .gas_leak_detection import GasLeakDetectionConfig, GasLeakDetectionUseCase
|
|
79
|
+
from .license_plate_monitoring import LicensePlateMonitorConfig,LicensePlateMonitorUseCase
|
|
80
|
+
from .dwell_detection import DwellConfig,DwellUseCase
|
|
81
|
+
from .age_gender_detection import AgeGenderConfig,AgeGenderUseCase
|
|
82
|
+
from .people_tracking import PeopleTrackingConfig,PeopleTrackingUseCase
|
|
83
|
+
from .wildlife_monitoring import WildLifeMonitoringConfig, WildLifeMonitoringUseCase
|
|
84
|
+
from .pcb_defect_detection import PCBDefectConfig, PCBDefectUseCase
|
|
85
|
+
from .underground_pipeline_defect_detection import UndergroundPipelineDefectConfig,UndergroundPipelineDefectUseCase
|
|
86
|
+
from .suspicious_activity_detection import SusActivityConfig, SusActivityUseCase
|
|
87
|
+
from .natural_disaster import NaturalDisasterConfig, NaturalDisasterUseCase
|
|
88
|
+
|
|
89
|
+
#Put all IMAGE based usecases here
|
|
90
|
+
from .blood_cancer_detection_img import BloodCancerDetectionConfig, BloodCancerDetectionUseCase
|
|
91
|
+
from .skin_cancer_classification_img import SkinCancerClassificationConfig, SkinCancerClassificationUseCase
|
|
92
|
+
from .plaque_segmentation_img import PlaqueSegmentationConfig, PlaqueSegmentationUseCase
|
|
93
|
+
from .cardiomegaly_classification import CardiomegalyConfig, CardiomegalyUseCase
|
|
94
|
+
from .Histopathological_Cancer_Detection_img import HistopathologicalCancerDetectionConfig,HistopathologicalCancerDetectionUseCase
|
|
95
|
+
from .cell_microscopy_segmentation import CellMicroscopyConfig, CellMicroscopyUseCase
|
|
96
|
+
from .drone_traffic_monitoring import DroneTrafficMonitoringUsecase, VehiclePeopleDroneMonitoringConfig
|
|
97
|
+
from ..face_reg.face_recognition import FaceRecognitionEmbeddingUseCase, FaceRecognitionEmbeddingConfig
|
|
98
|
+
|
|
99
|
+
__all__ = [
|
|
100
|
+
'FaceRecognitionEmbeddingUseCase',
|
|
101
|
+
'FaceRecognitionEmbeddingConfig',
|
|
102
|
+
'VehiclePeopleDroneMonitoringConfig',
|
|
103
|
+
'DroneTrafficMonitoringUsecase',
|
|
104
|
+
'PeopleCountingUseCase',
|
|
105
|
+
'IntrusionUseCase',
|
|
106
|
+
'ProximityUseCase',
|
|
107
|
+
'CustomerServiceUseCase',
|
|
108
|
+
'AdvancedCustomerServiceUseCase',
|
|
109
|
+
'BasicCountingTrackingUseCase',
|
|
110
|
+
'LicensePlateUseCase',
|
|
111
|
+
'ColorDetectionUseCase',
|
|
112
|
+
'PPEComplianceUseCase',
|
|
113
|
+
'BananaMonitoringUseCase',
|
|
114
|
+
'WoundSegmentationUseCase',
|
|
115
|
+
'FieldMappingUseCase',
|
|
116
|
+
'LeafDiseaseDetectionUseCase',
|
|
117
|
+
'VehicleMonitoringUseCase',
|
|
118
|
+
'ShopliftingDetectionUseCase',
|
|
119
|
+
'ParkingUseCase',
|
|
120
|
+
'ParkingSpaceUseCase',
|
|
121
|
+
'FireSmokeUseCase',
|
|
122
|
+
'MaskDetectionUseCase',
|
|
123
|
+
'FlareAnalysisUseCase',
|
|
124
|
+
'LeafUseCase',
|
|
125
|
+
'PotholeSegmentationUseCase',
|
|
126
|
+
'CarDamageDetectionUseCase',
|
|
127
|
+
'FaceEmotionUseCase',
|
|
128
|
+
'UnderwaterPlasticUseCase',
|
|
129
|
+
'PedestrianDetectionUseCase',
|
|
130
|
+
'AgeDetectionUseCase',
|
|
131
|
+
'WeldDefectUseCase',
|
|
132
|
+
'PriceTagUseCase',
|
|
133
|
+
'WeaponDetectionUseCase',
|
|
134
|
+
'TheftDetectionUseCase',
|
|
135
|
+
'TrafficSignMonitoringUseCase',
|
|
136
|
+
'DistractedDriverUseCase',
|
|
137
|
+
'EmergencyVehicleUseCase',
|
|
138
|
+
'SolarPanelUseCase',
|
|
139
|
+
'ChickenPoseDetectionUseCase',
|
|
140
|
+
'CropWeedDetectionUseCase',
|
|
141
|
+
'ChildMonitoringUseCase',
|
|
142
|
+
'GenderDetectionUseCase',
|
|
143
|
+
'ConcreteCrackUseCase',
|
|
144
|
+
'FashionDetectionUseCase',
|
|
145
|
+
'WarehouseObjectUseCase',
|
|
146
|
+
'ShoppingCartUseCase',
|
|
147
|
+
'BottleDefectUseCase',
|
|
148
|
+
'AssemblyLineUseCase',
|
|
149
|
+
'AntiSpoofingDetectionUseCase',
|
|
150
|
+
'ShelfInventoryUseCase',
|
|
151
|
+
'CarPartSegmentationUseCase',
|
|
152
|
+
'LaneDetectionUseCase',
|
|
153
|
+
'WindmillMaintenanceUseCase',
|
|
154
|
+
'FlowerUseCase',
|
|
155
|
+
'SmokerDetectionUseCase',
|
|
156
|
+
'RoadTrafficUseCase',
|
|
157
|
+
'RoadViewSegmentationUseCase',
|
|
158
|
+
# 'FaceRecognitionUseCase',
|
|
159
|
+
'DrowsyDriverUseCase',
|
|
160
|
+
'WaterBodyUseCase',
|
|
161
|
+
'LitterDetectionUseCase',
|
|
162
|
+
'AbandonedObjectDetectionUseCase',
|
|
163
|
+
'LeakDetectionUseCase',
|
|
164
|
+
'HumanActivityUseCase',
|
|
165
|
+
'GasLeakDetectionUseCase',
|
|
166
|
+
'LicensePlateMonitorUseCase',
|
|
167
|
+
'DwellUseCase',
|
|
168
|
+
'AgeGenderUseCase',
|
|
169
|
+
'PeopleTrackingUseCase',
|
|
170
|
+
'WildLifeMonitoringUseCase',
|
|
171
|
+
'PCBDefectUseCase',
|
|
172
|
+
'UndergroundPipelineDefectUseCase',
|
|
173
|
+
'SusActivityUseCase',
|
|
174
|
+
'NaturalDisasterUseCase',
|
|
175
|
+
|
|
176
|
+
#Put all IMAGE based usecases here
|
|
177
|
+
'BloodCancerDetectionUseCase',
|
|
178
|
+
'SkinCancerClassificationUseCase',
|
|
179
|
+
'PlaqueSegmentationUseCase',
|
|
180
|
+
'CardiomegalyUseCase',
|
|
181
|
+
'HistopathologicalCancerDetectionUseCase',
|
|
182
|
+
'CellMicroscopyUseCase',
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
'PeopleCountingConfig',
|
|
187
|
+
'IntrusionConfig',
|
|
188
|
+
'ProximityConfig',
|
|
189
|
+
'ParkingSpaceConfig',
|
|
190
|
+
'CustomerServiceConfig',
|
|
191
|
+
'AdvancedCustomerServiceConfig',
|
|
192
|
+
'PPEComplianceConfig',
|
|
193
|
+
'LicensePlateConfig',
|
|
194
|
+
'PotholeConfig',
|
|
195
|
+
'ColorDetectionConfig',
|
|
196
|
+
'LeafDiseaseDetectionConfig',
|
|
197
|
+
'CarDamageConfig',
|
|
198
|
+
'CarDamageConfig',
|
|
199
|
+
'VehicleMonitoringConfig',
|
|
200
|
+
'ShopliftingDetectionConfig',
|
|
201
|
+
'ParkingConfig',
|
|
202
|
+
'FireSmokeConfig',
|
|
203
|
+
'LeafConfig',
|
|
204
|
+
'FlareAnalysisConfig',
|
|
205
|
+
'FaceEmotionConfig',
|
|
206
|
+
'UnderwaterPlasticConfig',
|
|
207
|
+
'FieldMappingConfig',
|
|
208
|
+
'WoundConfig',
|
|
209
|
+
'PedestrianDetectionConfig',
|
|
210
|
+
'ChickenPoseDetectionConfig',
|
|
211
|
+
'AgeDetectionConfig',
|
|
212
|
+
'BananaMonitoringConfig',
|
|
213
|
+
'WeldDefectConfig',
|
|
214
|
+
'PriceTagConfig',
|
|
215
|
+
'DistractedDriverConfig',
|
|
216
|
+
'EmergencyVehicleConfig',
|
|
217
|
+
'TheftDetectionConfig',
|
|
218
|
+
'TrafficSignMonitoringConfig',
|
|
219
|
+
'SolarPanelConfig',
|
|
220
|
+
'CropWeedDetectionConfig',
|
|
221
|
+
'ChildMonitoringConfig',
|
|
222
|
+
'GenderDetectionConfig',
|
|
223
|
+
'WeaponDetectionConfig',
|
|
224
|
+
'ConcreteCrackConfig',
|
|
225
|
+
'FashionDetectionConfig',
|
|
226
|
+
'WarehouseObjectConfig',
|
|
227
|
+
'ShoppingCartConfig',
|
|
228
|
+
'BottleDefectConfig',
|
|
229
|
+
'AssemblyLineConfig',
|
|
230
|
+
'AntiSpoofingDetectionConfig',
|
|
231
|
+
'ShelfInventoryConfig',
|
|
232
|
+
'CarPartSegmentationConfig',
|
|
233
|
+
'LaneDetectionConfig',
|
|
234
|
+
'WindmillMaintenanceConfig',
|
|
235
|
+
'FlowerConfig',
|
|
236
|
+
'SmokerDetectionConfig',
|
|
237
|
+
'RoadTrafficConfig',
|
|
238
|
+
'RoadViewSegmentationConfig',
|
|
239
|
+
# 'FaceRecognitionConfig',
|
|
240
|
+
'DrowsyDriverUseCase',
|
|
241
|
+
'WaterBodyConfig',
|
|
242
|
+
'LitterDetectionConfig',
|
|
243
|
+
'AbandonedObjectConfig',
|
|
244
|
+
'DwellConfig',
|
|
245
|
+
'AgeGenderConfig',
|
|
246
|
+
'PeopleTrackingConfig',
|
|
247
|
+
'UndergroundPipelineDefectConfig',
|
|
248
|
+
|
|
249
|
+
'LeakDetectionConfig',
|
|
250
|
+
'HumanActivityConfig',
|
|
251
|
+
'GasLeakDetectionConfig',
|
|
252
|
+
'LicensePlateMonitorConfig',
|
|
253
|
+
'WildLifeMonitoringConfig',
|
|
254
|
+
'PCBDefectConfig',
|
|
255
|
+
'SusActivityConfig',
|
|
256
|
+
'NaturalDisasterConfig',
|
|
257
|
+
|
|
258
|
+
#Put all IMAGE based usecase CONFIGS here
|
|
259
|
+
'BloodCancerDetectionConfig',
|
|
260
|
+
'SkinCancerClassificationConfig',
|
|
261
|
+
'PlaqueSegmentationConfig',
|
|
262
|
+
'CardiomegalyConfig',
|
|
263
|
+
'HistopathologicalCancerDetectionConfig',
|
|
264
|
+
'CellMicroscopyConfig',
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
]
|