├── README.md ├── _init_paths.py ├── blob.py ├── config.py ├── demo └── test │ ├── imgs │ └── ILSVRC2012_val_00045007_gray.JPEG │ └── pairs │ └── ILSVRC2012_val_00045007_gray.JPEG.pairs ├── model ├── imagenet_class.txt └── vgg_19_gray_bn │ ├── deploy.prototxt │ └── deploy_roi.prototxt ├── network.py ├── pipeline.jpg ├── source ├── pca │ └── pca_func.m └── search │ └── main.cpp └── test.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmmlillian/Gray-Image-Retrieval/HEAD/README.md -------------------------------------------------------------------------------- /_init_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmmlillian/Gray-Image-Retrieval/HEAD/_init_paths.py -------------------------------------------------------------------------------- /blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmmlillian/Gray-Image-Retrieval/HEAD/blob.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmmlillian/Gray-Image-Retrieval/HEAD/config.py -------------------------------------------------------------------------------- /demo/test/imgs/ILSVRC2012_val_00045007_gray.JPEG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmmlillian/Gray-Image-Retrieval/HEAD/demo/test/imgs/ILSVRC2012_val_00045007_gray.JPEG -------------------------------------------------------------------------------- /demo/test/pairs/ILSVRC2012_val_00045007_gray.JPEG.pairs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmmlillian/Gray-Image-Retrieval/HEAD/demo/test/pairs/ILSVRC2012_val_00045007_gray.JPEG.pairs -------------------------------------------------------------------------------- /model/imagenet_class.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmmlillian/Gray-Image-Retrieval/HEAD/model/imagenet_class.txt -------------------------------------------------------------------------------- /model/vgg_19_gray_bn/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmmlillian/Gray-Image-Retrieval/HEAD/model/vgg_19_gray_bn/deploy.prototxt -------------------------------------------------------------------------------- /model/vgg_19_gray_bn/deploy_roi.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmmlillian/Gray-Image-Retrieval/HEAD/model/vgg_19_gray_bn/deploy_roi.prototxt -------------------------------------------------------------------------------- /network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmmlillian/Gray-Image-Retrieval/HEAD/network.py -------------------------------------------------------------------------------- /pipeline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmmlillian/Gray-Image-Retrieval/HEAD/pipeline.jpg -------------------------------------------------------------------------------- /source/pca/pca_func.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmmlillian/Gray-Image-Retrieval/HEAD/source/pca/pca_func.m -------------------------------------------------------------------------------- /source/search/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmmlillian/Gray-Image-Retrieval/HEAD/source/search/main.cpp -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmmlillian/Gray-Image-Retrieval/HEAD/test.py --------------------------------------------------------------------------------