filter_edge.h
上传用户:bossps2lzz
上传日期:2022-07-07
资源大小:522k
文件大小:1k
源码类别:

DSP编程

开发平台:

C/C++

  1. /*****************************************************************************
  2.  *
  3.  *
  4.  * filter_edge.h
  5.  *
  6.  *
  7.  * Include file containing the set of filter edges
  8.  * Eges are precomputed for efficiency.
  9.  *
  10.  *
  11.  *
  12.  *
  13.  * Written by Vasanthan Rangan and Sowmya Narayanan
  14.  *
  15.  *
  16.  *
  17.  *
  18.  *
  19.  *
  20.  *****************************************************************************/
  21. #define Number_Of_Filters 20 /* Total Number of Filters */
  22.  
  23.  float H[Number_Of_Filters+2] = { 
  24.  0.0,2.349535731,4.945514224,7.813784877,10.98290838,
  25.  14.48444125,18.35324982,22.62785770,27.35082918,
  26.  32.56919306,38.33491098,44.70539514,51.74407917,
  27.  59.52105066,68.11374874,77.60773478,88.09754483,
  28.  99.68763091,112.4934010,126.6423682,142.2754203,0.0 };
  29.