├── .gitignore ├── README.md ├── log_params.yaml ├── main.py ├── params.yaml ├── requirements.txt ├── resources └── config │ ├── botsort.yaml │ └── bytetrack.yaml ├── src ├── __init__.py ├── ob_detection │ ├── __init__.py │ ├── person_tracker.py │ └── zone_person_tracker.py ├── pipeline │ ├── __init__.py │ └── pipeline.py └── utils │ ├── __init__.py │ └── logger.py ├── start.sh └── zone_tracker_example.py /.gitignore: -------------------------------------------------------------------------------- 1 | results 2 | logs 3 | __pycache__ 4 | .idea 5 | 6 | . 7 | models 8 | *.mp4 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishworrsubedii/person_tracker_and_counter/HEAD/README.md -------------------------------------------------------------------------------- /log_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishworrsubedii/person_tracker_and_counter/HEAD/log_params.yaml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishworrsubedii/person_tracker_and_counter/HEAD/main.py -------------------------------------------------------------------------------- /params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishworrsubedii/person_tracker_and_counter/HEAD/params.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishworrsubedii/person_tracker_and_counter/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/config/botsort.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishworrsubedii/person_tracker_and_counter/HEAD/resources/config/botsort.yaml -------------------------------------------------------------------------------- /resources/config/bytetrack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishworrsubedii/person_tracker_and_counter/HEAD/resources/config/bytetrack.yaml -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Created By: ishwor subedi 3 | Date: 2024-08-22 4 | """ 5 | -------------------------------------------------------------------------------- /src/ob_detection/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Created By: ishwor subedi 3 | Date: 2024-08-22 4 | """ 5 | -------------------------------------------------------------------------------- /src/ob_detection/person_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishworrsubedii/person_tracker_and_counter/HEAD/src/ob_detection/person_tracker.py -------------------------------------------------------------------------------- /src/ob_detection/zone_person_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishworrsubedii/person_tracker_and_counter/HEAD/src/ob_detection/zone_person_tracker.py -------------------------------------------------------------------------------- /src/pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Created By: ishwor subedi 3 | Date: 2024-08-22 4 | """ 5 | -------------------------------------------------------------------------------- /src/pipeline/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishworrsubedii/person_tracker_and_counter/HEAD/src/pipeline/pipeline.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Created By: ishwor subedi 3 | Date: 2024-08-22 4 | """ 5 | -------------------------------------------------------------------------------- /src/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishworrsubedii/person_tracker_and_counter/HEAD/src/utils/logger.py -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- 1 | python -m zone_tracker_example -------------------------------------------------------------------------------- /zone_tracker_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishworrsubedii/person_tracker_and_counter/HEAD/zone_tracker_example.py --------------------------------------------------------------------------------