gitextract_efwv_cne/ ├── .gitignore ├── LICENSE ├── README.md ├── data/ │ ├── Liverpool-LastRow/ │ │ ├── LIV_[2]-1_CHE.csv │ │ ├── Real_vs_Barcelona_Calma.csv │ │ └── liverpool_2019.csv │ └── liverpool_2019.csv ├── data-analysis.ipynb ├── full-tracking.ipynb ├── html/ │ └── narya/ │ ├── analytics/ │ │ ├── edg_agent.html │ │ └── index.html │ ├── datasets/ │ │ ├── homography_dataset.html │ │ ├── index.html │ │ ├── keypoints_dataset.html │ │ └── tracking_dataset.html │ ├── index.html │ ├── linker/ │ │ ├── basetrack.html │ │ ├── index.html │ │ ├── kalman_filter.html │ │ ├── matching.html │ │ └── multitracker.html │ ├── models/ │ │ ├── gluon_models.html │ │ ├── index.html │ │ ├── keras_layers.html │ │ ├── keras_models.html │ │ ├── torch_layers.html │ │ └── torch_models.html │ ├── preprocessing/ │ │ ├── image.html │ │ └── index.html │ ├── tracker/ │ │ ├── full_tracker.html │ │ ├── homography_estimator.html │ │ ├── index.html │ │ └── player_ball_tracker.html │ ├── trainer/ │ │ ├── homography_train.html │ │ ├── index.html │ │ ├── keypoints_train.html │ │ └── tracker_train.html │ └── utils/ │ ├── data.html │ ├── google_football_utils.html │ ├── homography.html │ ├── image.html │ ├── index.html │ ├── linker.html │ ├── masks.html │ ├── tracker.html │ ├── utils.html │ └── vizualization.html ├── models_examples.ipynb ├── narya/ │ ├── README.md │ ├── __init__.py │ ├── analytics/ │ │ ├── __init__.py │ │ └── edg_agent.py │ ├── datasets/ │ │ ├── __init__.py │ │ ├── homography_dataset.py │ │ ├── keypoints_dataset.py │ │ └── tracking_dataset.py │ ├── linker/ │ │ ├── __init__.py │ │ ├── basetrack.py │ │ ├── kalman_filter.py │ │ ├── matching.py │ │ └── multitracker.py │ ├── models/ │ │ ├── __init__.py │ │ ├── gluon_models.py │ │ ├── keras_layers.py │ │ ├── keras_models.py │ │ ├── torch_layers.py │ │ └── torch_models.py │ ├── preprocessing/ │ │ ├── __init__.py │ │ └── image.py │ ├── requirements.txt │ ├── tracker/ │ │ ├── __init__.py │ │ ├── full_tracker.py │ │ ├── homography_estimator.py │ │ └── player_ball_tracker.py │ ├── trainer/ │ │ ├── __init__.py │ │ ├── homography_train.py │ │ ├── keypoints_train.py │ │ └── tracker_train.py │ └── utils/ │ ├── __init__.py │ ├── data.py │ ├── google_football_utils.py │ ├── homography.py │ ├── image.py │ ├── linker.py │ ├── masks.py │ ├── tracker.py │ ├── utils.py │ └── vizualization.py ├── requirements.txt └── training.ipynb