Ball Detection: Difference between revisions
Line 1: | Line 1: | ||
==Design Choice== | ==Design Choice== | ||
<p> | <p> | ||
Using a vision based ball detection approach is almost a given if we take into account the fact that we are searching for a non-tracking or invasive method. Nevertheless, several methods were researched and compared:</p> | |||
Revision as of 11:22, 27 March 2016
Design Choice
Using a vision based ball detection approach is almost a given if we take into account the fact that we are searching for a non-tracking or invasive method. Nevertheless, several methods were researched and compared:
The final design choice was to use the color detection method and it was made based on the amount of previous experience, non-invasive, robustness and easy to implement criteria.
Methodology
Color detection methods are based on removing pixels that do not pass a certain pre-defined color threshold. Thus, filtering will output an image with only the color based pixels we are looking for. From that point onwards, matching and selecting the object becomes the main concern. For selecting the ball candidate, a circular shape matching will be used taking into account that a ball will be seen as a circle from all perspectives, assuming there is no occlusion.
The whole detection process can be divided into two main parts:
- Color based filtering
- Circular shape matching
Color based filtering
In order to carry out the color filtering creating a mask is required. Thus, knowing the color we are going to filter in advanced is a must. In this project, the ‘Color Thresholder’ App from MATLAB was used to create the masking functions.
Circular shape matching
The Hough transform is used to detect the circular shape of the ball. Parameters like the sensitivity of the metric and the radius we are looking for should be defined beforehand for an effective matching. Assuming we are only going to have a certain circular shape with a pre-defined radius, based on the theta of the camera’s FOV and the height at which the frame was taken, only the sensitivity of the Hough Transform should be tuned to get the ball candidate with a relative low false positive rate.
Use in refereeing
One condition to enable refereeing is to have detected a ball within the frame. [Link]