Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/YaleDHLab/neural-neighbors
A simple web application for browsing similar images
https://github.com/YaleDHLab/neural-neighbors
computer-vision image-processing visual-similarity-search web-app
Last synced: 6 days ago
JSON representation
A simple web application for browsing similar images
- Host: GitHub
- URL: https://github.com/YaleDHLab/neural-neighbors
- Owner: YaleDHLab
- License: mit
- Created: 2017-08-05T00:14:19.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-09-09T17:51:24.000Z (about 4 years ago)
- Last Synced: 2024-04-15T15:20:28.148Z (7 months ago)
- Topics: computer-vision, image-processing, visual-similarity-search, web-app
- Language: JavaScript
- Homepage: https://yaledhlab.github.io/neural-neighbors/
- Size: 3.89 MB
- Stars: 32
- Watchers: 6
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Note: This repository has been archived
This project was developed under a previous phase of the Yale Digital Humanities Lab. Now a part of Yale Library’s Computational Methods and Data department, the Lab no longer includes this project in its scope of work. As such, it will receive no further updates.# TSNE Image Browser
This repository hosts source code used to create a similar image browser. Users can mouse over images to identify similar images, or click on images to read more information about the particular photograph.
![App preview](/assets/images/preview.png?raw=true)
## Dependencies
The scripts in `utils/` are written in pure Python (3.5). The image resizing utilities require ImageMagick.
## Quickstart
You can start a local web server and see the application by running:
```
git clone https://github.com/YaleDHLab/neural-neighbors
cd neural-neighborswget https://s3-us-west-2.amazonaws.com/lab-apps/meserve-kunhardt/image-browser/data.tar.gz
tar -zxf data.tar.gz# Python 3
python -m http.server 7052# Python 2
python -m SimpleHTTPServer 7052
```The viewer will then be available on `localhost:7052`.