Shadertoy-Shaders/Image-Filtering/Convolution-Filter
Sven Vogel 739a00f466 fixed links 2024-03-02 14:34:46 +01:00
..
Image.glsl added various convolution filter 2023-07-03 13:00:56 +02:00
README.md fixed links 2024-03-02 14:34:46 +01:00
overview.png added various convolution filter 2023-07-03 13:00:56 +02:00

README.md

Convolution-Filter

overview.png

Convolution filter are filters that take a kernel and sum up every pixel and multiply that pixel with the corresponding element of the kernel. Note that blur filter are technically convolution filters as well despite them not being listed here.

This file contains example implemntations of the following convolution filters:

  • Median Filter
  • Unsharp mask
  • Laplace (sharpen)
  • Emboss (omni-directional)
  • Sobel-Feldmann
  • Edge Detection