├── .gitignore ├── README.md ├── Theory ├── SIBCON-2022 │ ├── CUHK-SYSU.jpg │ ├── CVPR19.png │ ├── Eng.doc │ ├── JDE.png │ ├── MOT.png │ ├── PRW.png │ ├── Pyramid_network_Eng.png │ ├── Pyramid_network_Rus.png │ ├── SIBCON-2022.pptx │ ├── _Conference-template_2022.doc │ ├── caltech-pedestrian.png │ ├── ours.jpg │ ├── prediction head_Eng.png │ ├── prediction head_Rus.png │ └── Рус.doc ├── Научные отчеты │ ├── 1_этап_научный отчет.docx │ ├── 2_этап_научный отчет.docx │ ├── 3_этап_научный отчет.docx │ ├── 3_этап_научный отчет.pdf │ ├── Результаты и перспективы проекта.docx │ └── Результаты и перспективы проекта.pdf ├── Пенза - Проблемы информатики │ └── Хрящев - ДЕТЕКТИРОВАНИЕ И ОТСЛЕЖИВАНИЕ ИГРОКОВ.docx └── Регистрация программы ЭВМ │ ├── 1_заявление.doc │ ├── 2_Доп к заявлению.doc │ ├── 3_Согласие автора.doc │ ├── 3_Согласие автора_2.doc │ ├── 4_Согласие на обработку перс данных _2.doc │ ├── 4_Согласие на обработку перс данных.doc │ ├── 5_Реферат.doc │ └── 6_Фрагменты_ЭВМ.docx ├── results └── README.md ├── sport_videos └── README.md ├── statistics └── README.md └── video_player ├── Icons ├── door.png ├── info.png ├── log-out.png ├── play-button.png ├── play.png ├── statistics.png ├── stop.png ├── tv.png └── voleyball-player.png ├── SportAISystem.lnk ├── background_extraction.py ├── combatscounter.py ├── constants.py ├── emailsending.py ├── exchange_files └── models.py ├── frames_extraction.py ├── heatmapper.py ├── interactivestatwindow.py ├── main.py ├── models └── README.md ├── motionheatmap.py ├── motiontrajectories.py ├── mottracker.py ├── operations.py ├── postprocessing.py ├── run_sportaisystem.bat ├── sportaisystem.sh ├── statdialog.py ├── system ├── background.jpg ├── colormap.png └── spot.png ├── traceplace.py ├── videodataloader.py └── videoplayer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/README.md -------------------------------------------------------------------------------- /Theory/SIBCON-2022/CUHK-SYSU.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/SIBCON-2022/CUHK-SYSU.jpg -------------------------------------------------------------------------------- /Theory/SIBCON-2022/CVPR19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/SIBCON-2022/CVPR19.png -------------------------------------------------------------------------------- /Theory/SIBCON-2022/Eng.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/SIBCON-2022/Eng.doc -------------------------------------------------------------------------------- /Theory/SIBCON-2022/JDE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/SIBCON-2022/JDE.png -------------------------------------------------------------------------------- /Theory/SIBCON-2022/MOT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/SIBCON-2022/MOT.png -------------------------------------------------------------------------------- /Theory/SIBCON-2022/PRW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/SIBCON-2022/PRW.png -------------------------------------------------------------------------------- /Theory/SIBCON-2022/Pyramid_network_Eng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/SIBCON-2022/Pyramid_network_Eng.png -------------------------------------------------------------------------------- /Theory/SIBCON-2022/Pyramid_network_Rus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/SIBCON-2022/Pyramid_network_Rus.png -------------------------------------------------------------------------------- /Theory/SIBCON-2022/SIBCON-2022.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/SIBCON-2022/SIBCON-2022.pptx -------------------------------------------------------------------------------- /Theory/SIBCON-2022/_Conference-template_2022.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/SIBCON-2022/_Conference-template_2022.doc -------------------------------------------------------------------------------- /Theory/SIBCON-2022/caltech-pedestrian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/SIBCON-2022/caltech-pedestrian.png -------------------------------------------------------------------------------- /Theory/SIBCON-2022/ours.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/SIBCON-2022/ours.jpg -------------------------------------------------------------------------------- /Theory/SIBCON-2022/prediction head_Eng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/SIBCON-2022/prediction head_Eng.png -------------------------------------------------------------------------------- /Theory/SIBCON-2022/prediction head_Rus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/SIBCON-2022/prediction head_Rus.png -------------------------------------------------------------------------------- /Theory/SIBCON-2022/Рус.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/SIBCON-2022/Рус.doc -------------------------------------------------------------------------------- /Theory/Научные отчеты/1_этап_научный отчет.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/Научные отчеты/1_этап_научный отчет.docx -------------------------------------------------------------------------------- /Theory/Научные отчеты/2_этап_научный отчет.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/Научные отчеты/2_этап_научный отчет.docx -------------------------------------------------------------------------------- /Theory/Научные отчеты/3_этап_научный отчет.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/Научные отчеты/3_этап_научный отчет.docx -------------------------------------------------------------------------------- /Theory/Научные отчеты/3_этап_научный отчет.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/Научные отчеты/3_этап_научный отчет.pdf -------------------------------------------------------------------------------- /Theory/Научные отчеты/Результаты и перспективы проекта.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/Научные отчеты/Результаты и перспективы проекта.docx -------------------------------------------------------------------------------- /Theory/Научные отчеты/Результаты и перспективы проекта.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/Научные отчеты/Результаты и перспективы проекта.pdf -------------------------------------------------------------------------------- /Theory/Пенза - Проблемы информатики/Хрящев - ДЕТЕКТИРОВАНИЕ И ОТСЛЕЖИВАНИЕ ИГРОКОВ.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/Пенза - Проблемы информатики/Хрящев - ДЕТЕКТИРОВАНИЕ И ОТСЛЕЖИВАНИЕ ИГРОКОВ.docx -------------------------------------------------------------------------------- /Theory/Регистрация программы ЭВМ/1_заявление.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/Регистрация программы ЭВМ/1_заявление.doc -------------------------------------------------------------------------------- /Theory/Регистрация программы ЭВМ/2_Доп к заявлению.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/Регистрация программы ЭВМ/2_Доп к заявлению.doc -------------------------------------------------------------------------------- /Theory/Регистрация программы ЭВМ/3_Согласие автора.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/Регистрация программы ЭВМ/3_Согласие автора.doc -------------------------------------------------------------------------------- /Theory/Регистрация программы ЭВМ/3_Согласие автора_2.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/Регистрация программы ЭВМ/3_Согласие автора_2.doc -------------------------------------------------------------------------------- /Theory/Регистрация программы ЭВМ/4_Согласие на обработку перс данных _2.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/Регистрация программы ЭВМ/4_Согласие на обработку перс данных _2.doc -------------------------------------------------------------------------------- /Theory/Регистрация программы ЭВМ/4_Согласие на обработку перс данных.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/Регистрация программы ЭВМ/4_Согласие на обработку перс данных.doc -------------------------------------------------------------------------------- /Theory/Регистрация программы ЭВМ/5_Реферат.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/Регистрация программы ЭВМ/5_Реферат.doc -------------------------------------------------------------------------------- /Theory/Регистрация программы ЭВМ/6_Фрагменты_ЭВМ.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/Theory/Регистрация программы ЭВМ/6_Фрагменты_ЭВМ.docx -------------------------------------------------------------------------------- /results/README.md: -------------------------------------------------------------------------------- 1 | Folder for saving results -------------------------------------------------------------------------------- /sport_videos/README.md: -------------------------------------------------------------------------------- 1 | Storage of videos -------------------------------------------------------------------------------- /statistics/README.md: -------------------------------------------------------------------------------- 1 | Folder for saving statistics -------------------------------------------------------------------------------- /video_player/Icons/door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/Icons/door.png -------------------------------------------------------------------------------- /video_player/Icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/Icons/info.png -------------------------------------------------------------------------------- /video_player/Icons/log-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/Icons/log-out.png -------------------------------------------------------------------------------- /video_player/Icons/play-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/Icons/play-button.png -------------------------------------------------------------------------------- /video_player/Icons/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/Icons/play.png -------------------------------------------------------------------------------- /video_player/Icons/statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/Icons/statistics.png -------------------------------------------------------------------------------- /video_player/Icons/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/Icons/stop.png -------------------------------------------------------------------------------- /video_player/Icons/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/Icons/tv.png -------------------------------------------------------------------------------- /video_player/Icons/voleyball-player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/Icons/voleyball-player.png -------------------------------------------------------------------------------- /video_player/SportAISystem.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/SportAISystem.lnk -------------------------------------------------------------------------------- /video_player/background_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/background_extraction.py -------------------------------------------------------------------------------- /video_player/combatscounter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/combatscounter.py -------------------------------------------------------------------------------- /video_player/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/constants.py -------------------------------------------------------------------------------- /video_player/emailsending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/emailsending.py -------------------------------------------------------------------------------- /video_player/exchange_files/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/exchange_files/models.py -------------------------------------------------------------------------------- /video_player/frames_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/frames_extraction.py -------------------------------------------------------------------------------- /video_player/heatmapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/heatmapper.py -------------------------------------------------------------------------------- /video_player/interactivestatwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/interactivestatwindow.py -------------------------------------------------------------------------------- /video_player/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/main.py -------------------------------------------------------------------------------- /video_player/models/README.md: -------------------------------------------------------------------------------- 1 | Storage of model weights -------------------------------------------------------------------------------- /video_player/motionheatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/motionheatmap.py -------------------------------------------------------------------------------- /video_player/motiontrajectories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/motiontrajectories.py -------------------------------------------------------------------------------- /video_player/mottracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/mottracker.py -------------------------------------------------------------------------------- /video_player/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/operations.py -------------------------------------------------------------------------------- /video_player/postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/postprocessing.py -------------------------------------------------------------------------------- /video_player/run_sportaisystem.bat: -------------------------------------------------------------------------------- 1 | python main.py 2 | exit -------------------------------------------------------------------------------- /video_player/sportaisystem.sh: -------------------------------------------------------------------------------- 1 | python main.py -------------------------------------------------------------------------------- /video_player/statdialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/statdialog.py -------------------------------------------------------------------------------- /video_player/system/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/system/background.jpg -------------------------------------------------------------------------------- /video_player/system/colormap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/system/colormap.png -------------------------------------------------------------------------------- /video_player/system/spot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/system/spot.png -------------------------------------------------------------------------------- /video_player/traceplace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/traceplace.py -------------------------------------------------------------------------------- /video_player/videodataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/videodataloader.py -------------------------------------------------------------------------------- /video_player/videoplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonel11/DetectTrackSportEvents/HEAD/video_player/videoplayer.py --------------------------------------------------------------------------------