Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have three images:

enter image description here

enter image description here

enter image description here

I've aligned them spatio-temporally to the best of my ability. I want to detect where the content-specific differences (the caption, the RT logo) are. Simple image difference (followed by thresholding, etc) doesn't work here for a couple of reasons:

  • the first image is quite blurry. Image difference will yield peaks at edges. I don't want that
  • the first image has undergone some sort of color transformation, so the difference contains a lot of information that I don't need

Here's the plain image difference between the first two images (using GIMP):

enter image description here

Any ideas?

share|improve this question
3  
Might be of help: stackoverflow.com/questions/2219185/… – Blagovest Buyukliev Jun 21 '11 at 11:25
1  
I agree it's not the approach to take, but this specific example doesn't entirely justify your assertion that diff+threshold is ruled out -- the similar areas are not identical, but the differences are much bigger. You probably could make do with that and bit of filtering... – walkytalky Jun 21 '11 at 12:09
@walkytalky: yeah, if i low-pass filter the difference before thresholding, i can get a better result. the problem is that it's hard to determine the threshold other than by empirical means – misha Jun 21 '11 at 14:33

1 Answer

You could partition each image into a grid of squares and compute local histograms for each square. Then you can compare the corresponding histograms from the three images. The histograms that differ most should identify the regions with the largest differences.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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