I have a question from school project. So we are given the task of tracking the volleyball from a given beach volleyball match video in mov format. The task is to track the ball and output the whole volleyball court in birds eye view, and also to draw the ball movement.
currently, Im still doing the ball tracking. However, I do not know how to do it exactly. I have thought of doing it in this way:
- get the 4 corners of the volleyball court using Harris Corner detectors
- use the 4 corners to find homography between different frames
- then remove background and player
- finally can track ball???
Is my thought process correct?
And I have tried to detect 4 corners using the harrisCorner detector. But it does not get the 4 corners. Any one has any suggestions? Thank you