I'm working on a project where I have to index images and their textual metadata. I first thought about Lucene but it's not supporting images. Then I found LIre but it's only working with images and the metadata wouldn't be handled.
Is there an open-source solution to index images and their metadata in a single index?
Otherwise, the only solution I found would be to have two separate indexes and to merge the results. I jut can't figure out how to merge them considering that to each indexed image matches a set of indexed metadata. In this case, I probably need a way to link the set of metadata to the image and reciprocally.
Could you explain to me how I could actually merge the results?