I'm running a process on a WebCam Image. I'd like to Wake Up that process only if there is major changes.
- Something moving in the image
- Lights turn on
- ...
So i'm looking for a fast efficient algorithm in C# to compare 2 byte[] (kinect image) of the same size.
- I just need kind of "diff size" with a threashold
- I found some motion detection algorithm but it's "too much"
- I found some XOR algorithm but it might be too simple ? Would be great If I could ignore small change like sunlight, vibration, etc, ...