https://github.com/remibodin/Unity3D-Blur
Gaussian and kawase blur for Unity3D
https://github.com/remibodin/Unity3D-Blur
unity3d
Last synced: 5 months ago
JSON representation
Gaussian and kawase blur for Unity3D
- Host: GitHub
- URL: https://github.com/remibodin/Unity3D-Blur
- Owner: remibodin
- Created: 2015-08-09T18:58:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-14T10:23:02.000Z (almost 8 years ago)
- Last Synced: 2024-08-03T19:08:45.006Z (9 months ago)
- Topics: unity3d
- Language: ShaderLab
- Homepage:
- Size: 215 KB
- Stars: 52
- Watchers: 8
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-unity-open-source-on-github - Unity3D-Blur - Gaussian and kawase blur (Blur)
README
# Blur for Unity3D
## Gaussian Blur
Based on [this blog post](https://software.intel.com/en-us/blogs/2014/07/15/an-investigation-of-fast-real-time-gpu-based-image-blur-algorithms).### Usage

Chose algorithm :
* Naïve
* Two pass
* Two pass with linear samplingand filter size :
* LITTLE_KERNEL (7)
* MEDIUM_KERNEL (35)
* BIG_KERNEL (127)### Graph
|LITTLE_KERNEL 3 sigma|MEDIUM_KERNEL 10 sigma|BIG_KERNEL 25 sigma|
|:-:|:-:|:-:|
||||### More
#### Kawase blur
At this moment kawase blur have not param
5 pass with [0, 1, 2, 2, 3] offset
...