All Projects → KananVyas → PlayerDetection

KananVyas / PlayerDetection

Licence: other
Player detection and ball detection in football matches using image processing(opencv).

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to PlayerDetection

rps-cv
A Rock-Paper-Scissors game using computer vision and machine learning on Raspberry Pi
Stars: ✭ 102 (+104%)
Mutual labels:  image-classification, image-recognition, opencv-python
ICCV2021-Paper-Code-Interpretation
ICCV2021/2019/2017 论文/代码/解读/直播合集,极市团队整理
Stars: ✭ 2,022 (+3944%)
Mutual labels:  image-classification, image-recognition
GFNet
[NeurIPS 2021] Global Filter Networks for Image Classification
Stars: ✭ 199 (+298%)
Mutual labels:  image-classification, image-recognition
Reproducibilty-Challenge-ECANET
Unofficial Implementation of ECANets (CVPR 2020) for the Reproducibility Challenge 2020.
Stars: ✭ 27 (-46%)
Mutual labels:  image-classification, image-recognition
aws-rekognition
A Laravel Package/Facade for the AWS Rekognition API
Stars: ✭ 20 (-60%)
Mutual labels:  image-classification, image-recognition
etiketai
Etiketai is an online tool designed to label images, useful for training AI models
Stars: ✭ 63 (+26%)
Mutual labels:  detection, image-classification
pytorch-vit
An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale
Stars: ✭ 250 (+400%)
Mutual labels:  image-classification, image-recognition
ComputerVision-Essentials
Computer Vision Essentials in Python Programming Language 🎉
Stars: ✭ 28 (-44%)
Mutual labels:  image-recognition, opencv-python
GStreamer-Python
Fetch RTSP Stream using GStreamer in Python and get image in Numpy
Stars: ✭ 81 (+62%)
Mutual labels:  opencv-python, opencv2
deforestation
A machine learning exercise, using KNN to classify deforested areas
Stars: ✭ 26 (-48%)
Mutual labels:  image-classification, image-recognition
Image-Classifier
Final Project of the Udacity AI Programming with Python Nanodegree
Stars: ✭ 63 (+26%)
Mutual labels:  image-classification, image-recognition
survey-computer-vision-2021
2021年计算机视觉技术综述分类汇总
Stars: ✭ 54 (+8%)
Mutual labels:  detection, image-recognition
MNIST
Handwritten digit recognizer using a feed-forward neural network and the MNIST dataset of 70,000 human-labeled handwritten digits.
Stars: ✭ 28 (-44%)
Mutual labels:  image-classification, image-recognition
tensorflow-image-classifier
Easily train an image classifier and then use it to label/tag other images
Stars: ✭ 29 (-42%)
Mutual labels:  image-classification, image-recognition
Counting-people-video
Counting the number of people in a video.
Stars: ✭ 60 (+20%)
Mutual labels:  opencv-python, opencv3-python
UAV-Stereo-Vision
A program for controlling a micro-UAV for obstacle detection and collision avoidance using disparity mapping
Stars: ✭ 30 (-40%)
Mutual labels:  opencv-python, opencv2
coursera-ai-for-medicine-specialization
Programming assignments, labs and quizzes from all courses in the Coursera AI for Medicine Specialization offered by deeplearning.ai
Stars: ✭ 80 (+60%)
Mutual labels:  image-classification, image-recognition
zalo-landmark
Zalo AI Challenge - Landmark Identification
Stars: ✭ 39 (-22%)
Mutual labels:  image-classification, image-recognition
camera-fusion
Multiple cameras calibration and fusion with OpenCV Python.
Stars: ✭ 27 (-46%)
Mutual labels:  opencv-python, opencv3-python
CoreML-and-Vision-with-a-pre-trained-deep-learning-SSD-model
This project shows how to use CoreML and Vision with a pre-trained deep learning SSD (Single Shot MultiBox Detector) model. There are many variations of SSD. The one we’re going to use is MobileNetV2 as the backbone this model also has separable convolutions for the SSD layers, also known as SSDLite. This app can find the locations of several di…
Stars: ✭ 16 (-68%)
Mutual labels:  image-classification, image-recognition

Player detection and ball detection in Football videos

There are multiple ways to detect players in any sports videos.Here I have used simple image processing techniques to detect players by only using opencv.

It detects first the green ground and make everything other then green color into black.After converting into greyscale I have found contours on the ground.By using some parameters we will detect players.

Here I have used the video of France VS Belgium match.So for further detection, I have used the color of their jersy to segment them.For france We will detect the blue jersy and then for belgium we will detect the red jersy.

Algorithm: First we will read the video. Detect the Green ground. Use morphological operation for better detection. Find contours. Detect players. Segment them by France or Belgium. Detect the football.

You can see the code in player_detection.py and the video used is cutvideo.mp4.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].