how can i find t closest image in many images?
Mostrar comentarios más antiguos
when i have a original image, which function can help me to find closest image in database?
i want to find the most similar one.
Respuesta aceptada
Más respuestas (1)
Thorsten
el 26 de En. de 2015
Well, there is lots of research devoted to this question. One simple way would be to compute the RMS (root mean squared) difference between the images:
D = sqrt(mean((im2double(I1(:)) - im2double(I2(:))).^2));
This works only if the images have the same size.
Categorías
Más información sobre Image Quality en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!