"Spot the difference" game code

1 visualización (últimos 30 días)
abu
abu el 18 de Abr. de 2013
hi i need a code which 1. detect 2 similar image and crop them out(example from browser) 2. detect the differences between 2 images 3. show the differences, count and label them(example difference no.1,difference no.2)
basically the code is like a cheat to the "spot the differences" game and tell u how many and where are the differences. Appreciate if some1 could help me on the code. Thanks in advance.

Respuesta aceptada

Image Analyst
Image Analyst el 18 de Abr. de 2013
Try to just subtract them:
differenceImage = single(image1) - single(image2);
imshow(differenceImage, []);
Then you can threshold and blacken the differences, or make them red, or outline them, or whatever you want to do.
  8 comentarios
Image Analyst
Image Analyst el 21 de Abr. de 2013
Yes, I saw that, but what I want to know is if my code snippets above helped you. Did you actually try them? Or not? It sounds like not. If not, then why not?
abu
abu el 22 de Abr. de 2013
Yes, that pretty much solved the comparing difference part. My problem noow would be how to crop the 2 image from browser in order to compare them

Iniciar sesión para comentar.

Más respuestas (1)

abu
abu el 20 de Abr. de 2013
http://imageshack.us/photo/my-images/14/examplesk.png/ this is the example i need to crop. i need the 2 similar picture. thx a lot.

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by