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

https://github.com/ehopperdietzel/iir-cpu-blur

2D blur effect using a 2nd order IIR filter
https://github.com/ehopperdietzel/iir-cpu-blur

2d blur c iir-filter image-processing

Last synced: 10 months ago
JSON representation

2D blur effect using a 2nd order IIR filter

Awesome Lists containing this project

README

          

# CPU IIR Blur

2D blur example using a 2nd order IIR lowpass filter.

## Example

$ ./IIR-CPU-Blur Rubber-Soul.png 5

### Before

![](example/Rubber-Soul.png)

### After

![](example/Result.png)

## Build

$ cd src
$ meson setup build
$ cd build
$ meson compile

## Libs

[LodePNG](https://github.com/lvandeve/lodepng) (For reading and writting PNG images)