ultralytics-ascend/ultralytics/solutions/__init__.py
Glenn Jocher 26a664f636
ultralytics 8.2.50 new Streamlit live inference Solution (#14210)
Signed-off-by: Glenn Jocher <glenn.jocher@ultralytics.com>
Co-authored-by: Muhammad Rizwan Munawar <muhammadrizwanmunawar123@gmail.com>
Co-authored-by: UltralyticsAssistant <web@ultralytics.com>
Co-authored-by: RizwanMunawar <chr043416@gmail.com>
Co-authored-by: Kayzwer <68285002+Kayzwer@users.noreply.github.com>
2024-07-05 22:02:38 +02:00

23 lines
631 B
Python

# Ultralytics YOLO 🚀, AGPL-3.0 license
from .ai_gym import AIGym
from .analytics import Analytics
from .distance_calculation import DistanceCalculation
from .heatmap import Heatmap
from .object_counter import ObjectCounter
from .parking_management import ParkingManagement, ParkingPtsSelection
from .queue_management import QueueManager
from .speed_estimation import SpeedEstimator
from .streamlit_inference import inference
__all__ = (
"AIGym",
"DistanceCalculation",
"Heatmap",
"ObjectCounter",
"ParkingManagement",
"ParkingPtsSelection",
"QueueManager",
"SpeedEstimator",
"Analytics",
)