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}}
}