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

https://github.com/sofakingworld/convolution

convolution filters
https://github.com/sofakingworld/convolution

Last synced: 27 days ago
JSON representation

convolution filters

Awesome Lists containing this project

README

          

# Convolution application

### [application demo](http://convolution.16mb.com)

### instructions:
1. Clone repository
2. Launch application at web server
3. Upload Image at /index.php page
4. Change Kernel and press "aplly filter"
5. Look at result :3

### Original Kernel
0 0 0
0 1 0
0 0 0

### Blur Kernel
1 1 1
1 1 1
1 1 1

### Sharpen Kernel
0 -1 0
-1 5 -1
0 -1 0

### Right Sobel Kernel
-1 0 1
-2 0 2
-1 0 1

### Emboss Kernel
-2 -1 0
-1 1 1
0 1 2

More Kernels at google