GithubHelp home page GithubHelp logo

glassifier-api's Introduction

glassifier-api

Flask API that returns a stylized version of an image.

Usage

The provided requesting tool in request_glassifier.py opens an image path provided by the user, formats it and communicates with the server API. The returned object is a Pillow.Image object, which can be saved and/or displayed to the user.

See the mock code or # Example to see an example usage.

The API is hosted at https://glassifier-api.herokuapp.com.

Running in local server

To run the api in a local server, simply clone this repository and run app.py.

The server should be running at http://localhost:5000.

Installing dependencies

Before you run the server, make sure to have the requirements installed on your machine.

You can install from the requirements.txt file:

$ pip install -r requirements.txt

or manually:

$ pip install Flask-RESTful Pillow sklearn pandas requests

Alternatively, to run only the request tool:

$ pip install Pillow numpy requests

Example

from request_glassifier import request_img_glassifier


api_url = 'https://glassifier-api.herokuapp.com/api/glassifier'

my_img = 'milu.jpg'
filtered_image = request_img_glassifier('img/'+my_img)
if filtered_image:
    filtered_image.save('output/filtered_'+my_img)
    filtered_image.show()

glassifier-api's People

Contributors

tkleyton avatar dependabot[bot] avatar

Stargazers

 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.