Search
Meeting time: Wednesdays 16:15 Location: G102A
Marius Muja and David G. Lowe: “Fast Approximate Nearest Neighbors with Automatic Algorithm Configuration”, in International Conference on Computer Vision Theory and Applications (VISAPP'09), 2009 PDF software page
Oxford 5k dataset: image thumbnails, descriptors (128 D vectors, single precision, stored one by one), and corresponing image names (one name per line, i-th name corresponds to i-th descriptors).
The following lines will read the descriptors and the image names in MATLAB:
fid = fopen('imagedesc.dat', 'r'); X = fread(fid, [128,inf], 'single⇒single'); fclose(fid); Names = textread('imagenames.txt', '%s');
SIFT dataset: 2M SIFT descriptors are available here. The descriptors are 128D unsigned byte precision, the following Matlab lines will read the descriptors:
fid = fopen('SIFT.dat', 'r'); X = fread(fid, [128,inf], 'uint8⇒uint8'); fclose(fid);
Use the SIFT dataset for the approximate k-means. Use 32k cluster centers. Compare three different assignments to the nearest cluster (kd-forest, k-means tree, exact assignmet). For all three cases, start from identical inicialization. Compare the final results (up to say 30 iterations) in terms of sum of squared distances, that is Σ (X - f(X))^2, where f(X) is the assigned cluster center.
Looking forward to results on your own data too.
Herve Jegou, Matthijs Douze, Cordelia Schmid: “Product quantization for nearest neighbor search”, PAMI 2011. PDF software page
(Do not get confused by the text on the page. The mex version is in the package.)
Oxford 105k dataset: image thumbnails, descriptors (128 D vectors, single precision, stored one by one), and corresponing image names (one name per line, i-th name corresponds to i-th descriptors, Oxford 5k image names are given without a directory, remaining filenames contain a directory corresponding to the distributed directory structure).
Additional descriptors for Oxford105k are available here. These descriptors are based on deep convolutional neural networks and should in general give better visual similarity for nearest neighbours than the previous ones, please compare.
Ahmet Iscen, Teddy Furon, Vincent Gripon, Michael Rabbat, Hervé Jégou: “Memory vectors for similarity search in high-dimensional spaces”, 2014. Arxiv software page
Apply memory vectors on Oxford 105k dataset. Report precision and time efficiency, compare with previous approaches.
Wei Dong, Moses Charikar, Kai Li : “Efficient K-Nearest Neighbor Graph Construction for Generic Similarity Measures.” In Proceedings of the 20th international conference on World Wide Web (WWW). New York, NY. 2011. PDF software page
Use the new KGraph implementation.
Create a k-NN graph on the Oxford 105k dataset (CNN descriptors) and compare the precision and the run-time with the previous methods. Perform also a visual inspection of the results (are the nearest images similar?).