Skip to content

Yani0515/Bilateral-Filtering

 
 

Repository files navigation

Bilateral Filtering

===================

Applying Bilateral Filtering to images

Overview

The bilateral filter is a nonlinear filter that does spatial averaging without smoothing edges; it has proven to be an effective image denoising technique amongst other various contexts in which it has been used, such as texture editing, relighting, tone management and optical-flow estimation. An important issue with the application of the bilateral filter is the selection of the filter parameters, which affect the results significantly. In this repository, a brief synopsis on how bilateral filtering operates is given, alongside some examples of applications that take advantage of it, especially image denoising. Furthermore, the implementation of this filter is explained in details.

Introduction

The bilateral filter is perhaps the simplest and most intuitive one among explicit weighted-average filters. It computes the filtering output at each pixel as the average of neighboring pixels, weighted by the Gaussian of both spatial and intensity distance. The bilateral filter smooths the image while preserving edges. Therefore, the idea underlying bilateral filtering is to do in the range of the image what traditional filters do in its domain. Similarly to tradition filters, range filtering is defined in order to average image values with weights, depending on image intensity or color, that decay with dissimilarity. Then range and domain filtering are combined.

Implementation

The code for the bilateral filtering was implemented on Matlab. The filter was implemented both for gray scale and color images. Firstly the domain filter is computed on the input image within the specified window. The larger the domain parameter is, the blurrier the image will become.After that, the window size is adjusted and then the range filter is computed.Finally the bilateral filter is computed by taking the product of the domain and range filters before normalizing the output.The function bilateralGrayscale contains the Matlab code for this implementation. Regarding color images, the same process was followed for every one of the R, G and B channels. Then the channels are combined again for the final result. One can notice that the effectiveness of the filter in this case is not as expected, mainly because of the different intensity profile and contrast of each band. Furthermore this process is computationally more expensive because the bilateral filter is applied to every different channel. The implementation for color images can be found in the bilateralRGB with the supplementary function bilateral_each_channel.

License

MIT

About

Applying Bilateral Filtering to images

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • MATLAB 100.0%