Add security alarm system as ultralytics solution (#18281)

Co-authored-by: UltralyticsAssistant <web@ultralytics.com>
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
This commit is contained in:
Muhammad Rizwan Munawar 2024-12-17 23:42:37 +05:00 committed by GitHub
parent 5c2ecb7669
commit fd8159339c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 216 additions and 128 deletions

View file

@ -8,6 +8,7 @@ from .object_counter import ObjectCounter
from .parking_management import ParkingManagement, ParkingPtsSelection
from .queue_management import QueueManager
from .region_counter import RegionCounter
from .security_alarm import SecurityAlarm
from .speed_estimation import SpeedEstimator
from .streamlit_inference import inference
from .trackzone import TrackZone
@ -25,4 +26,5 @@ __all__ = (
"inference",
"RegionCounter",
"TrackZone",
"SecurityAlarm",
)