├── README.md ├── models ├── best.pt └── yolo11n.pt ├── requirements.txt ├── rolling_video └── Video_20241001164011269.avi ├── tracker.py ├── yolo_detection_tracking.py └── yolo_detector.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamrukeshduwal/yolov11_real_time_object_detection_with_DeepSORT/HEAD/README.md -------------------------------------------------------------------------------- /models/best.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamrukeshduwal/yolov11_real_time_object_detection_with_DeepSORT/HEAD/models/best.pt -------------------------------------------------------------------------------- /models/yolo11n.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamrukeshduwal/yolov11_real_time_object_detection_with_DeepSORT/HEAD/models/yolo11n.pt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python==4.10.0.84 2 | ultralytics==8.3.1 3 | deep-sort-realtime==1.3.2 4 | -------------------------------------------------------------------------------- /rolling_video/Video_20241001164011269.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamrukeshduwal/yolov11_real_time_object_detection_with_DeepSORT/HEAD/rolling_video/Video_20241001164011269.avi -------------------------------------------------------------------------------- /tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamrukeshduwal/yolov11_real_time_object_detection_with_DeepSORT/HEAD/tracker.py -------------------------------------------------------------------------------- /yolo_detection_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamrukeshduwal/yolov11_real_time_object_detection_with_DeepSORT/HEAD/yolo_detection_tracking.py -------------------------------------------------------------------------------- /yolo_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamrukeshduwal/yolov11_real_time_object_detection_with_DeepSORT/HEAD/yolo_detector.py --------------------------------------------------------------------------------