I'd like to be able to detect if a camera's line of sight has been changed, thus seeing a sudden change in the background. Surely there's a clever way to do this?
When it comes to tracking changes in a video stream, it seems most of the work is related to separating the background from the foreground so that objects moving around in the image(s) can be identified using background subtraction or the like.
I'm using EmguCV (OpenCV) as my tool of choice...in case there's any particular suggestions around available algorithms in this tool set. I've looked experimented with the background/foreground subtractors available in Emgu. They're not bad for detecting foreground changes, but I don't see how to use them to watch for this type of event. Surely I'm overlooking something obvious.
Thanks.