Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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

wget 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`.