FurMark
Current Version: 1.8.2
»FurMark homepage
»FurMark 1.8.x Submissions
»Benchmark Submissions

GPU Caps Viewer
Current Version: 1.9.0
»GPU Caps Viewer homepage
»GPU DB Submissions

PhysX FluidMark
Current Version: 1.2.0
»FluidMark homepage
»FluidMark 1.2.x Submissions
»Benchmark Submissions

GeeXLab
Current Version: 0.2.0
»GeeXLab homepage
»GeeXLab Overview

GPU Shark
Current Version: 0.2.3
»GPU Shark homepage

TessMark
Current Version: 0.2.0
»TessMark homepage

Blogs
»JeGX's Infamous Lab

 
Image Filtering with GLSL - Convolution Kernels

By Jérôme Guinot - jegx [at] ozone3d [dot] net

Initial draft: December 8, 2005
Last update: January 8, 2006


Translated from french by Samir Fitouri




[ Index ]

Introduction | Page 2 | Page 3 | Page 4 | Page 5 | Page 6 | Page 7

»Next Page



2 - Gaussian Filter


This filter is used to add blur to an image.
1  2  1
2  4  2
1  2  1

The demo associated with this filter is DEMO_gaussian_filter.xml
.



Load the DEMO_gaussian_kernel.xml in Demoniak3D file and you will get the following result:


Fig.2 - Gaussian filter.
The working of the shaders in this tutorial is the following: the base image is plated on a mesh plane. The left part of the image (texture coordinate u < 0.495) is filtered while the right part (u > 0.505) is not. All the texels that are located in the [0.495; 0.505] interval will be colored in red in order to form a vertical separating line.

The dimension of the base texture must be of a power of 2. In our case, they are 256x256. These measurements are passed as uniform variables to the pixel shaders in order to calculate the distances to access the neighboring pixels to the pixel being processed.

The vertex and pixel shaders being the same for all the filters, only the convolution core will be given.

If the code of the previous pixel shader does not work properly, it is possible to take of the branches and to unroll the loop as shown in the following code:




All the previous codes run properly on a nVidia GPU based graphic controller. Graphics controllers featuring the ATI chipsets seem not to support the constant array functionality. In case of an ATI chipset, the pixel shader code becomes:





The code of the pixel shader above is fully operational on a Radeon 9800pro graphics controller featuring the Catalyst 5.11 drivers. The accompanying projects are therefore provided in two versions: one exclusively intended for the nVidia chipsets while an other is meant for both ATI and nVidia.




[ Index ]

Introduction | Page 2 | Page 3 | Page 4 | Page 5 | Page 6 | Page 7

»Next Page







Language:

3D Graphics Search Engine:

The Geeks Of 3D





Geeks3D's Articles
»GPU Memory Speed Demystified

»Multi-Threading Programming Resources

»GeForce and Radeon OpenCL Overview

»How to Get your Multi-core CPU Busy at 100%

»How To Make a VGA Dummy Plug

»Night Vision Post Processing Filter



Geeks3D latest news

Demoniak3D
Current Version: 1.23.0
»Demoniak3D
»Download
»Libraries and Plugins
»Demos
»Online Help - Reference Guide
»Codes Samples


Misc
»Texture DataPack #1
»Asus Silent Knight CPU Cooler
Page generated in 0.0469651222229 seconds.