matsui528/sis

sir demo is not working and also when i am compling offline.py i am getting following error

Closed this issue · 6 comments

sir demo is not working and also when i am compling offline.py i am getting following error
desk

please resolve this issue as soon as possible i really need this code

Sis is not supported in windows

xxllp commented

666,I would like to make it with faiss

Indeed that's possible. You can replace the search part with faiss. But you must use the anaconda environment to install faiss. Because I'd like to make this repo as simple as possible, I keep the current simple nearest neighbor search implementation.

xxllp commented

I also want to kown the different between cnn feature and sift of an image

Typically a CNN feature is extracted from an image, e.g., 4096D VGG feature per image. Given a query, the search is conducted by finding similar CNN features.

On the other hand, SIFT is a "local" feature. Several SIFT features are extracted from an image. They are then aggregated into one new feature vector (e.g., BoF vector). The search is done over these aggregated vectors.

CNN features are usually more powerful. So if your purpose is just search, you can simply use CNN features. From a programming point of view, CNN is easier to use because one feature is extracted from one image.

See a survey for more details https://arxiv.org/abs/1608.01807