how can i find the difference between two images based on the pixel difference
+5
A:
there are a lot of methods, ranging from several lines of code to a big project.
you can try:
the pixel-level difference, i.e. image matrix A - image matrix B
the color histogram difference. You can also split the images into several small windows, and aggregate histogram difference in each window.
exact features, like Gist, Sift etc. That's the state-of-the-art/research approach.
Yin Zhu
2010-01-05 09:48:02
A:
You could implement a Sobel Filter
You can implement filters like that pretty quickly in C# using the AForge framework
Kurru
2010-01-09 20:10:44