sis
1.0.0
offline.py : este script extrae una característica profunda de cada imagen de la base de datos. Cada característica es una activación FC6 4096D de un modelo VGG16 con pesos pretrontrados en Imagenet.server.py : este script ejecuta un servidor web. Puede enviar su imagen de consulta al servidor a través de una interfaz web frascos. El servidor encuentra imágenes similares a la consulta mediante un escaneo lineal simple.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 y server.py .python server.py , puede acceder al servidor desde su navegador a través de algo como http://ec2-XX-XX-XXX-XXX.us-west-2.compute.amazonaws.com:5000 @misc{sis,
author = {Yusuke Matsui},
title = {Simple Image Search Engine},
howpublished = {url{https://github.com/matsui528/sis}}
}