Computer Vision ----Filtering

来源:互联网 发布:天下游显示网络不稳定 编辑:程序博客网 时间:2024/06/03 19:06

1  General

       Binary

       Gray Scale

       Color

2  Discrete Derivative

       df/dx = f(x)-f(x-1) = f'(x)        Backward difference
       df/dx = f(x)-f(x+1) = f'(x)       Forward difference
       df/dx = f(x+1)-f(x-1) = f'(x)    Central difference
      

3  Derivatives of Images

         Derivative masks 

               f'(x) => 1/3 [-1 -1 -1; 0 0 0; 1 1 1]

               f'(y) => 1/3 [-1 0 1; -1 0 1; -1 0 1]

4  Correlation

          f = Kernel

         h = Image

Convolution

6  Averages

        Mean

        Weighted mean

7  Gaussian Filter

         Properties of Gaussian

             Most common natural model

             Smooth function, it has infinite number of derivatives

             Fourier Transform of Gaussian is Gaussian

             Convolution of a Gaussion with itself is a Gaussian

             There are cells in eye that perform Gaussian filtering

8  Linear Filtering

          The output is the linear combination of the neighborhood pixels

      

               

原创粉丝点击