As my database I have a bunch of images of the same class - which means I do have only one class of images.
After implementing a CBIR (feature extraction by histograms and calculating distance by euclidean - very naive approach, nothing fancy), I get the 25 best matched results. And now I would like to evaluate them.
All evaluation metrics like mean average precision and precision recall need ground truth data, which I don't have. Right now I'm just taking one image and calculate the similarity.
How can I evaluate without having any ground truth data?