sis
1.0.0
offline.py :이 스크립트는 각 데이터베이스 이미지에서 깊은 기능을 추출합니다. 각 기능은 ImageNet 미리 훈련 된 가중치가있는 VGG16 모델의 4096D FC6 활성화입니다.server.py :이 스크립트는 웹 서버로 실행됩니다. 플라스크 웹 인터페이스를 통해 쿼리 이미지를 서버로 보낼 수 있습니다. 서버는 간단한 선형 스캔으로 쿼리와 유사한 이미지를 찾습니다.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 통해 브라우저에서 서버에 액세스 할 수 있습니다. @misc{sis,
author = {Yusuke Matsui},
title = {Simple Image Search Engine},
howpublished = {url{https://github.com/matsui528/sis}}
}