sis
1.0.0
offline.py :このスクリプトは、各データベースイメージから深い機能を抽出します。各機能は、ImagENET事前訓練を受けた重みを備えたVGG16モデルからの4096D FC6アクティベーションです。server.py :このスクリプトはWebサーバーを実行します。 Flask 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とserver.pyを実行します。python server.pyを実行した後、 http://ec2-XX-XX-XXX-XXX.us-west-2.compute.amazonaws.com:5000 :5000のようなものを介してブラウザからサーバーにアクセスできます。 @misc{sis,
author = {Yusuke Matsui},
title = {Simple Image Search Engine},
howpublished = {url{https://github.com/matsui528/sis}}
}