Warning: Undefined array key "HTTP_ACCEPT_LANGUAGE" in /home/clients/50536745d503cc9bd290722a231d5f8f/web/includes/o3_common.php on line 79

Deprecated: strpos(): Passing null to parameter #1 ($haystack) of type string is deprecated in /home/clients/50536745d503cc9bd290722a231d5f8f/web/includes/o3_common.php on line 79
oZone3D.Net Tutorials - Image Filtering - Convolution Kernels - GLSL - Gaussian Laplacian Emboss Sharpness




GeeXLab
Current version: 0.45.1
>GeeXLab homepage

FurMark
Current version: 1.30.0
>FurMark homepage

GPU Caps Viewer
Current version: 1.55.0.0
>GPU Caps Viewer homepage

GPU Shark
Current version: 0.26.0.0
>GPU Shark homepage


Blogs
>JeGX's HackLab

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

PhysX FluidMark
Current version: 1.5.4
>FluidMark homepage

TessMark
Current version: 0.3.0
>TessMark homepage

ShaderToyMark
Current version: 0.3.0
>ShaderToyMark homepage
>ShaderToyMark Scores

Demoniak3D
Current Version: 1.23.0
>Demoniak3D
>Download
>Libraries and Plugins
>Demos
>Online Help - Reference Guide
>Codes Samples
 
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





GeeXLab demos


GLSL - Mesh exploder


PhysX 3 cloth demo


Normal visualizer with GS


Compute Shaders test on Radeon


Raymarching in GLSL



Misc
>Texture DataPack #1
>Asus Silent Knight CPU Cooler
Page generated in 0.0037150382995605 seconds.