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.
- Host: GitHub
- URL: https://github.com/drew138/graphics-api
- Owner: drew138
- License: apache-2.0
- Created: 2021-03-20T02:39:52.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-03-23T14:55:07.000Z (over 2 years ago)
- Last Synced: 2025-01-23T19:24:21.759Z (over 1 year ago)
- Topics: image-processing, rest-api
- Language: Go
- Homepage: https://drew-graphics.site
- Size: 47.9 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.