I at moment trying to implement a simple an robust way of detecting an red ball.
I've converted into HSV and filtered using inRange(..)
, such that the red ball is clear and some other noise.
But what approach would be appropriate to detect the ball?
findContour and Hough seems a bit overkill computation wise, but what other alternatives do i have. I have to detect the position of the ball at all time, so the speed of the algorithm has to be appropriate for tracking.
what do you suggest?