PicSearch is an image search engine based on Convolutional Neural Network (CNN) feature. It’s a very simple demo and it just showes the performance of CNN for image retrieval. The demo site can access to demo.
The PicSearch is running on Caltech256 image dataset, which contains 29780 images with 256 categories. Before running the project, you must download the following code and dataset:
Note: to test it on other dataset, you must extract the features first. You can use CNN-for-Image-Retrieval to extract features on other dataset.
The code is written by Python, and the web server is cherrypy, so It’s very easy to understand the code and to run the code. The structure of PicSearch is as follows:
├── 256feat2048Norml.mat
├── bootstrap
├── favicon.ico
├── searchEnginePython.py
├── service-server.conf
├── service.conf
├── style.css
└── thumbnails
To run the code successfully, You are suggested to following the below steps:
service.conf
:[global]
server.socket_host = "127.0.0.1"
server.socket_port = 8080
server.thread_pool = 10
tools.sessions.on = True
[/]
tools.staticdir.root = "I:\PicSearch"
[/]
tools.staticdir.on = True
tools.staticdir.dir = ''
Changes the path of tools.staticdir.root
to your path.
python searchEnginePython.py
Then open your browse and put the site: 127.0.0.1.
That’s all. Enjoy yourself! If you have problem, you can open an issue on CNN-Web-Demo-for-Image-Retrieval.