vote up 8 vote down star
10

Here's what I would like to do:

I'm taking pictures with a webcam at regular intervals. Sort of like a time lapse thing. However, if nothing has really changed, that is, the picture pretty much looks the same, I don't want to store the latest snapshot.

I imagine there's some way of quantifying the difference, and I would have to empirically determine a threshold.

I'm looking for simplicity rather than perfection. I'm using python.

flag

47% accept rate

10 Answers

vote up 4 vote down

A simple solution:

Encode the image as a jpeg and look for a substantial change in filesize.

I've implemented something similar with video thumbnails, and had a lot of success and scalability.

link|flag
VERY simple... and might actually do the trick... i'm curious how effective it could be... so i'll definitely experiment with that. – carrier Oct 10 '08 at 2:50
Yes, I think it should work for you. It should be also be a relatively fast thing to do, and you can play with the exact number of bites to fine-tune it. Let me know if it works! – keparo Oct 10 '08 at 2:54
vote up 0 vote down

I think you could simply compute the euclidean distance (i.e. sqrt(sum of squares of differences, pixel by pixel)) between the luminance of the two images, and consider them equal if this falls under some empirical threshold. And you would better do it wrapping a C function.

link|flag
vote up 0 vote down

Earth movers distance might be exactly what you need. It might be abit heavy to implement in real time though.

link|flag
vote up 0 vote down

What about calculating the Manhattan Distance of the two images. That gives you n*n values. Then you could do something like an row average to reduce to n values and a function over that to get one single value.

link|flag
vote up 1 vote down

Have you seen the Algorithm for finding similar images question? Check it out to see suggestions.

I would suggest a wavelet transformation of your frames (I've written a C extension for that using Haar transformation); then, comparing the indexes of the largest (proportionally) wavelet factors between the two pictures, you should get a numerical similarity approximation.

link|flag
vote up 1 vote down

I was reading about this on Processing.org recently and found it stashed in my favorites. Maybe it helps you...

http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Video;action=display;num=1159141301

link|flag
vote up 4 vote down

A trivial thing to try:

Resample both images to small thumbnails (e.g. 64 x 64) and compare the thumbnails pixel-by-pixel with a certain threshold. If the original images are almost the same, the resampled thumbnails will be very similar or even exactly the same. This method takes care of noise that can occur especially in low-light scenes. It may even be better if you go grayscale.

link|flag
but how would you compare the pixels? – carrier Oct 10 '08 at 15:13
Once you have the thumbnails, you can simply compare the pixels one by one. You would calculate the "distance" of the RGB values, if you're working in colour or just the difference between the gray tones if you're in grayscale. – Ates Goral Oct 15 '08 at 3:45
"compare the pixels one by one". What does that mean? Should the test fail if ONE of the 64^2 pixel-per-pixel tests fails? – Federico Ramponi Oct 15 '08 at 13:25
What I meant by "compare the thumbnails pixel-by-pixel with a certain threshold" is to come up with a fuzzy algorithm to compare the pixels. If the calculated difference (depends on your fuzzy algorithm) exceeds a certain threshold, the images are "not the same". – Ates Goral Oct 15 '08 at 16:31
Very simple example, without the "fuzzy algorithm": parallel loop through every pixel (compare pixel# n of image#1 to pixel# n of image#2), and add the difference in value to a variable – Mk12 Nov 8 at 1:00
vote up 4 vote down

Two popular and relatively simple methods are: (a) the Euclidean distance already suggested, or (b) normalized cross-correlation. Normalized cross-correlation tends to be noticeably more robust to lighting changes than simple cross-correlation. Wikipedia gives a formula for the normalized cross-correlation. More sophisticated methods exist too, but they require quite a bit more work.

Using numpy-like syntax,

dist_euclidean = sqrt(sum((i1 - i2)^2)) / i1.size

dist_manhattan = sum(abs(i1 - i2)) / i1.size

dist_ncc = sum( (i1 - mean(i1)) * (i2 - mean(i2)) ) / (
  (i1.size - 1) * stdev(i1) * stdev(i2) )

assuming that i1 and i2 are 2D grayscale image arrays.

link|flag
Image cross-correlation functions are built into SciPy (docs.scipy.org/doc/scipy/…), and a fast version using the FFT is available in stsci python (stsci.edu/resources/software_hardware/…) – endolith Sep 17 at 16:16
vote up 3 vote down

Most of the answers given won't deal with lighting levels.

I would first normalize the image to a standard light level before doing the comparison.

link|flag
vote up 6 vote down

You can compare two images using functions from PIL.

import Image
import ImageChops

im1 = Image.open("splash.png")
im2 = Image.open("splash2.png")

diff = ImageChops.difference(im2, im1)

The diff object is an image in which every pixel is the result of the subtraction of the color values of that pixel in the second image from the first image. Using the diff image you can do several things. The simplest one is the diff.getbbox() function. It will tell you the minimal rectangle that contains all the changes between your two images.

You can probably implement approximations of the other stuff mentioned here using functions from PIL as well.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.