https://github.com/sofakingworld/convolution
convolution filters
https://github.com/sofakingworld/convolution
Last synced: 27 days ago
JSON representation
convolution filters
- Host: GitHub
- URL: https://github.com/sofakingworld/convolution
- Owner: sofakingworld
- Created: 2017-03-15T15:29:15.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-17T14:02:39.000Z (over 9 years ago)
- Last Synced: 2025-01-14T12:16:57.401Z (over 1 year ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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