/etc

Originally Published: 2015-11-03

I’ve been interested in experimenting with content-based image retrieval (CBIR) on large humanities datasets for a while, and John Resig brought Pastec to my attention in the Digital Humanities Slack. Ed Summers wondered if there might be something interesting to do with it in the context of Matthew Lincoln’s Rijksmuseum Images Torrent and I thought it would be a perfect opportunity to put Pastec through its paces.

Like TinEye MatchEngine, Pastec aims to find duplicate and near image matches in large image collections. Unlike MatchEngine, Pastec is open source, and uses ORB image descriptors to find matches among images.1

The Pastec API is pretty spare, but it seemed like there was enough there to do what I wanted. After getting the Pastec server compiled and running, I started bouncing every image in the Rijksmuseum data set into it with:

i=0; find rkm_data/images -type f | while read image; do \
  curl -X PUT --data-binary @$image http://localhost:4212/index/images/$i; \
  i=$((i+1)); \
done

Because of the way the Pastec API works, I also needed to keep a corresponding image file to index identifier mapping with:

i=0; find rkm_data/images -type f | while read image; do \
  echo "$i,$image"; \
  i=$((i+1)); \
done > mapping.csv

The process of adding all 218,442 images to the index took about two days,2 and resulted in a ~1.8GB index file. Once the index was finished, I needed to then bounce all the images back through the search API to find matches:

find rkm_data/images -type f -name '*.jpeg' | \
parallel --bar -u -j 8 \
'curl -s -X POST --data-binary @{} http://localhost:4212/index/searcher' \
> pastec_matches.txt

This process took about four days to complete. At the end, I wanted to mash the matches up with the filenames to make the results more easily usable, while also filtering the results down to “unique” matches with more than one image (i.e. a given set of image_ids should appear only once in the results), which I wrote a short script to do:

This resulted in 33,029 “unique” matches in the set.

Dipping into the results at random demonstrates a wide variety of the types of matches Pastec catches. From multiple versions of a print:

To a set of images of the galleries with a bench photographed from approximately the same angle:

To two anonymous and quite-similar plates:

Another phenomenon I’ve noticed is large match sets where the images mostly have e.g. a ColorChecker calibration target in common between them. At first I thought I could filter this out by the dimensions of the match results, or the match scores. Unfortunately, the match dimensions still cover most of the image in many of these cases, and the scores are not easily thresholdable without discarding valid matches (for example, the plates above have a match score of 14, and many ColorChecker matches have a score higher than this).

So what can we do with this data, and with this sort of processing? For one, I think it would be an interesting way to enable “serendipity” in large digital image collections. Some Rijksmuseum objects have a “Related Objects” metadata field which occasionally captures some of the matches found by this process, but many do not; this sort of automatic related object discovery could supplement this (presumably manually-generated) metadata. We could also invert this and use the “related” metadata to examine the results of our automatic process and see what kind of related objects image-matching doesn’t discover. John has also shared some interesting results that he got with using MatchEngine across multiple image archives, and it might be similarly-interesting to match other archives against the Rijksmuseum or vice versa.

I’ve been toying with the idea of setting up a Twitter bot to go through and tweet GIFs of every “unique” match (ideally with the Rijksmuseum URLs associated with them as well, so that they can be discovered via Twitter search). However, for this process to take even a little under a year, it would still need to tweet four images per hour without interruption, which may be a little much for anyone to realistically follow without it being too much spam.3

Doing the processing also turned up some issues with the processing and the data, as it typically does. We might want to try to automatically crop out calibration charts before indexing with Pastec, for example.4 We might also want to improve the performance of Pastec search so that we can run this process more frequently and on a wider variety of large image sets.5 Doing the processing also revealed an issue with some of the data in the torrent, that there are actually 13,101 empty image files in the uncompressed data, and most of these correspond to objects where the Rijksmuseum API does not make an image available due to copyright restrictions.6

For now, I’d like to make the match and index data available to anyone who wants to experiment with them:

Footnotes:

  1. John also has some great work on using MatchEngine for this sort of thing available online: http://ejohn.org/research/

  2. All the Pastec indexing and searching was done on an iMac with a 3.5GHz Intel Core i7 CPU and 32GB of RAM. 

  3. I’ve decided instead to experiment with automatically uploading GIFs of the matches to tumblr at http://rijksmuseum-pastec.tumblr.com/. With a 150 photo/day upload limit, this process should only take a “mere” 220 days or so to finish. 

  4. I hadn’t considered using the process for calibration chart removal before, but my survey of automatic ColorChecker detection approaches might provide a good starting point for anyone looking to do this. 

  5. You could presumably scale up Pastec by building the monolithic index once, then distributing the built index across a number of server instances and partitioning the search across them, but I’d really like to see performance be faster within a single instance. 

  6. Six of these missing images do appear to be downloadable, and I’ve made a list of these available here, though I did not add them to my Pastec index.