how can i find t closest image in many images?
Afficher commentaires plus anciens
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.
Réponse acceptée
Plus de réponses (1)
Thorsten
le 26 Jan 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.
Catégories
En savoir plus sur Image Quality dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!