├── .gitignore ├── README.md ├── __init__.py ├── algorithm ├── __init__.py └── object_detector.py ├── assets ├── button.jpg ├── weights.jpeg └── youtube.jpg ├── byte_tracker ├── __init__.py ├── base_track.py ├── kalman_filter.py └── matching.py ├── coco.weights ├── coco.yaml ├── detected_image.jpg ├── detected_ocr.jpg ├── image.jpg ├── image.py ├── iphone.jpg ├── models ├── __init__.py ├── common.py ├── experimental.py └── yolo.py ├── ocr_image.py ├── ocr_video.py ├── phone.webp ├── requirements.txt ├── streams.py ├── track_direction.py ├── track_video.py ├── track_webcam.py ├── utils ├── __init__.py ├── activations.py ├── autoanchor.py ├── datasets.py ├── detections.py ├── general.py ├── ocr.py └── torch_utils.py ├── video.mp4 ├── video.py └── webcam.py /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | **/__pycache__ 3 | **.DS_Store 4 | output.mp4 5 | streams.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /algorithm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /algorithm/object_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/algorithm/object_detector.py -------------------------------------------------------------------------------- /assets/button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/assets/button.jpg -------------------------------------------------------------------------------- /assets/weights.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/assets/weights.jpeg -------------------------------------------------------------------------------- /assets/youtube.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/assets/youtube.jpg -------------------------------------------------------------------------------- /byte_tracker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/byte_tracker/__init__.py -------------------------------------------------------------------------------- /byte_tracker/base_track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/byte_tracker/base_track.py -------------------------------------------------------------------------------- /byte_tracker/kalman_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/byte_tracker/kalman_filter.py -------------------------------------------------------------------------------- /byte_tracker/matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/byte_tracker/matching.py -------------------------------------------------------------------------------- /coco.weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/coco.weights -------------------------------------------------------------------------------- /coco.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/coco.yaml -------------------------------------------------------------------------------- /detected_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/detected_image.jpg -------------------------------------------------------------------------------- /detected_ocr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/detected_ocr.jpg -------------------------------------------------------------------------------- /image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/image.jpg -------------------------------------------------------------------------------- /image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/image.py -------------------------------------------------------------------------------- /iphone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/iphone.jpg -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/models/common.py -------------------------------------------------------------------------------- /models/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/models/experimental.py -------------------------------------------------------------------------------- /models/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/models/yolo.py -------------------------------------------------------------------------------- /ocr_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/ocr_image.py -------------------------------------------------------------------------------- /ocr_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/ocr_video.py -------------------------------------------------------------------------------- /phone.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/phone.webp -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/requirements.txt -------------------------------------------------------------------------------- /streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/streams.py -------------------------------------------------------------------------------- /track_direction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/track_direction.py -------------------------------------------------------------------------------- /track_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/track_video.py -------------------------------------------------------------------------------- /track_webcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/track_webcam.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/utils/activations.py -------------------------------------------------------------------------------- /utils/autoanchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/utils/autoanchor.py -------------------------------------------------------------------------------- /utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/utils/datasets.py -------------------------------------------------------------------------------- /utils/detections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/utils/detections.py -------------------------------------------------------------------------------- /utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/utils/general.py -------------------------------------------------------------------------------- /utils/ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/utils/ocr.py -------------------------------------------------------------------------------- /utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/utils/torch_utils.py -------------------------------------------------------------------------------- /video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/video.mp4 -------------------------------------------------------------------------------- /video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/video.py -------------------------------------------------------------------------------- /webcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos-ai/easy-yolov7/HEAD/webcam.py --------------------------------------------------------------------------------