c++.netopencvimage-processingmotion-detection

Opencv C++ finding movement in a thresholded image


I am using openCv with C++ and I am trying to find a moving ball under different lighting conditions. So far I am able to filter an image by thresholding it using HSV color space. The problem with this is that it will pick up other object that have a similar color. It is very tedious to figure out the exact hsv range everytime there is a ball with different color/background.

Is there a way for me to apply any filter on the thresholded binary image to detect only the objects that are moving? This way I will only find the ball and not other objects since they are usually stationary.

Thank you,

Varun


Solution

  • Simplest approach would be frame differencing / background learning in an image sequence.