Gaussian Blur - Image Processing Algorithm

  • 6年前
The gaussian blur algorithm is one of the most widely used blurring algorithms. It is accomplished by applying a convolution kernel to every pixel of an image, and averaging each value of each color channel of each pixel with the corresponding elements of the convolution matrix. You can also weigh the kernel so that each pixel processed takes a frion of its neighboring pixels instead of the whole value.\r
\r
LIVE DEMO: \r
\r
The algorithm (source: WikiPedia)\r
\r
The Big-O value for the Gaussian blur algorithm is O(Kw * Kh * Iw * Ih), where K[w,h] and I[w,h] are the width and height of the kernel and image, respectively.\r
\r
\r
Programming tutorials by Easy Learn Tutorial - because anyone can learn how to become an expert software and web developer!\r
\r
Copyright (c) new Rodrigo Silveira -

Category

📺
电视

推荐视频