sis
1.0.0
offline.py :此腳本從每個數據庫圖像中提取深度功能。每個功能都是來自具有Imagenet預訓練重量的VGG16模型的4096D FC6激活。server.py :此腳本運行一個網絡服務器。您可以通過燒瓶Web-Interface將查詢圖像發送到服務器。該服務器通過簡單的線性掃描找到與查詢相似的圖像。git clone https://github.com/matsui528/sis.git
cd sis
pip install -r requirements.txt
# Put your image files (*.jpg) on static/img
# Then fc6 features are extracted and saved on static/feature
# Note that it takes time for the first time because Keras downloads the VGG weights.
python offline.py
# Now you can do the search via localhost:5000
python server.pyoffline.py and server.py運行。python server.py後,您可以通過http://ec2-XX-XX-XXX-XXX.us-west-2.compute.amazonaws.com:5000 from瀏覽器訪問服務器。 @misc{sis,
author = {Yusuke Matsui},
title = {Simple Image Search Engine},
howpublished = {url{https://github.com/matsui528/sis}}
}