Can anyone recommend a motion detection library that's trainable via a supervised learning algorithm?
I have an IP webcam that I'm trying to detect motion from. I'm been using the motion software detector project to do this, but I'm getting a lot of false positives, despite weeks of tinkering with hundreds of settings. A cloud casting a shadow through a window or changing brightness will be classified as motion.
I've found numerous examples using OpenCV to do motion detection, but as far as I can tell, they essentially use the same methods that the motion software detector uses (i.e. it's not trainable, so it inevitably suffers from a lot of false positives).
I'm considering rolling my own, but I don't want to reinvent the wheel.