show-and-tell

A web app to detect objects within an image. It displays and reads back the contents to the user. show and tell

Running the app

See below for instructions on installation and dependencies.

$ . tensorflow/bin/activate
$ python app.py

Navigate a web browser to http://localhost:5000/.

Requirements

Python 2.7, Tensorflow Object Detection API.

Installation

# Clone this repository
$ git clone git@github.com:panteha/show-and-tell.git
$ git submodule init
$ git submodule update

# Go into the repository
$ cd show-and-tell

# Install dependencies
$ pip install virtualenv
$ virtual env tensorflow
$ . tensorflow/bin/activate
$ pip install flask

Follow these instructions to install the Tensorflow Object Detection API installation.

Contributors