tags:

views:

52

answers:

1

I beleive the website 'whatsbetter.com' (defunct) used a Condorcet method for comparing two images such that they could join a list of ranked images, and also have data stored about their performance against each other over time.

I would like to implement something like this myself. I don't want to over complicate it.

My brain isn't good at turning abstract concept (what I've been able to find on SO and the internet) into code, so before I go off and melt my brain by trying to do it from scratch, I felt it would be wise to find out if such code is already available first.

So do you know of any website where I can find this?

I appreciate your replies.

+1  A: 

Are you talking about comparing 2 images and get their similarity? if so check this: http://www.intelliot.com/blog/2008/03/sorted-directory-listing-image-resizing-comparison-and-similarity-in-php/

thephpdeveloper
No, but that is interesting anyway, so I'll check it out.What I mean is, I'm inviting the user to make their own judgement of which of the two (randomly picked) images they like best, then the images acquire a ranking against each other. I was looking for an algorith that would avoid the pitfalls of 'simple' comparing..Old images being unfairly ranked higher than newer images.Lack of freedom to create top 10, top 100 lists.But since creating this question I think I've got the beginnings of something that works ok...http://notails.com
MrVimes