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

https://github.com/drew138/graphics-api

API developed to perform image processing by applying convolution matrices.
https://github.com/drew138/graphics-api

image-processing rest-api

Last synced: about 21 hours ago
JSON representation

API developed to perform image processing by applying convolution matrices.

Awesome Lists containing this project

README

          

# GRAPHICS API

API designed to perform image processing on jpg, jpeg and png images.

## AVAILABLE ENDPOINTS

Currently available endpoints listed below:

```text
/api/sharpen
/api/edgedetection
/api/gaussianblur
/api/boxblur
/api/custom
```

Supplying an image in a multipart/form is required for all of the endpoints.
In addition, the `/api/custom` requires provissioning a convolution matrix in the form `[[val1,val2,val3],[val4,val5,val6],[val7,val8,val9]]`. Both of these must be supplied as `image` and `kernel` attributes respectively in the form.