GlobalApi.h
上传用户:aqingfeng
上传日期:2014-03-25
资源大小:1839k
文件大小:9k
源码类别:

波变换

开发平台:

Visual C++

  1. #ifndef _GLOBAL_API
  2. #define _GLOBAL_API
  3. #include <math.h>
  4. #include "dib.h"
  5. #include <complex>
  6. using namespace std;
  7. //----------------------------------------------------------------------
  8. // DIB处理函数
  9. BOOL DIBShow(CFile* pFile);
  10. BOOL CopyDIB(CDib* pDibSrc, CDib* pDibDst);
  11. BOOL CopyScreenToDIB(LPRECT lpRect, CDib* pDibDest);
  12. HPALETTE GetSystemPalette() ;
  13. HPALETTE CopyPalette(HPALETTE hPalSrc);
  14. BOOL ReadDIB(CFile* pFile, LPBITMAPINFOHEADER lpBMIH, LPBYTE lpImage);
  15. HPALETTE MakeDIBPalette(LPVOID lpvColorTable,  LPBITMAPINFOHEADER lpBMIH);
  16. BOOL PaintDIB(CDC* pDC, LPBITMAPINFOHEADER lpBMIH, LPBYTE lpImage, CPoint origin, CSize size, HPALETTE hPalette);
  17. //----------------------------------------------------------------------
  18. // 运动检测
  19. BOOL GetBackground(CString strFilePath, int nTotalFrameNum, int nImageWidth, 
  20.    int nImageHeight, unsigned char* pUnchBackGround);
  21. BOOL LoadDibSeq(CString strFilePath, int nCurFrameNum, int nTotalFrameNum, CDib* pDib);
  22. CString GetFileName(CString strFilePathName, int nCurFrameNum);
  23. void BinaFrameDiff(unsigned char *pUnchImg1, unsigned char *pUnchImg2, 
  24.   int nWidth, int nHeight, unsigned char * pUnchResult,
  25.   int nThreshold=10);
  26. void ErodeFrameDiff(unsigned char *pUnchImg, int nWidth, int nHeight, int nErodeHalfWin, 
  27.    int nErodeThreshold, unsigned char *pUnchResult);
  28. //----------------------------------------------------------------------
  29. // 图象分割
  30. void RegionSegFixThreshold(CDib * pDib, int nThreshold=100);
  31. void RobertsOperator(CDib * pDib, double * pdGrad);
  32. void LaplacianOperator(CDib * pDib, double * pdGrad);
  33. void EdgeTrack(CDib * pDib, unsigned char * pUnEdgeTrack);
  34. void RegionGrow(CDib * pDib, unsigned char * pUnRegion, int nThreshold = 10);
  35. void RegionSegAdaptive(CDib * pDib) ;
  36. void SobelOperator(CDib * pDib, double * pdGrad);
  37. void PrewittOperator(CDib * pDib, double * pdGrad);
  38. // canny 算子
  39. void GaussianSmooth(unsigned char *pUnchImg, int nWidth, int nHeight, double sigma, unsigned char * pUnchSmthdImg);
  40. void MakeGauss(double sigma, double **pdKernel, int *pnWindowSize) ; 
  41. void DirGrad(unsigned char *pUnchSmthdImg, int nWidth, int nHeight,
  42.  int *pnGradX , int *pnGradY);
  43. void GradMagnitude(int *pnGradX, int *pnGradY, int nWidth, int nHeight, int *pnMag) ; 
  44. void NonmaxSuppress(int *pnMag, int *pnGradX, int *pnGradY, int nWidth, int nHeight, unsigned char *pUnchRst);
  45. void EstimateThreshold(int *pnMag, int nWidth, int nHeight, int *pnThdHigh,int *pnThdLow, 
  46.  unsigned char * pUnchEdge, double dRatioHigh, double dRationLow) ;
  47. void Canny(unsigned char *pUnchImage, int nWidth, int nHeight, double sigma,
  48.  double dRatioLow, double dRatioHigh, unsigned char *pUnchEdge) ;
  49. void Hysteresis(int *pnMag, int nWidth, int nHeight, double dRatioLow, 
  50. double dRatioHigh, unsigned char *pUnchEdge) ;
  51. void TraceEdge (int y, int x, int nLowThd, unsigned char *pUnchEdge, int *pnMag, int nWidth) ;
  52. // 小波变换函数原型
  53. // Daubechies紧致正交小波基
  54. // 不同支撑区间长度下的滤波器系数如下
  55. const double hCoef[10][20] =
  56. {
  57. { .707106781187,  .707106781187},
  58. { .482962913145,  .836516303738,  .224143868042, -.129409522551 },
  59. { .332670552950,  .806891509311,  .459877502118, -.135011020010, -.085441273882,  .035226291882 },
  60. { .230377813309,  .714846570553,  .630880767930, -.027983769417,
  61.  -.187034811719,  .030841381836,  .032883011667, -.010597401785 },
  62. { .160102397974,  .603829269797,  .724308528438,  .138428145901, -.242294887066,
  63.  -.032244869585,  .077571493840, -.006241490213, -.012580751999,  .003335725285 },
  64. { .111540743350,  .494623890398,  .751133908021,  .315250351709, -.226264693965,
  65.  -.129766867567,  .097501605587,  .027522865530, -.031582039318,  .000553842201,
  66.   .004777257511, -.001077301085 },
  67. { .077852054085,  .396539319482,  .729132090846,  .469782287405, -.143906003929,
  68.  -.224036184994,  .071309219267,  .080612609151, -.038029936935, -.016574541631,
  69.   .012550998556,  .000429577973, -.001801640704,  .000353713800 },
  70. { .054415842243,  .312871590914,  .675630736297,  .585354683654, -.015829105256,
  71.  -.284015542962,  .000472484574,  .128747426620, -.017369301002, -.044088253931,
  72.   .013981027917,  .008746094047, -.004870352993, -.000391740373,  .000675449406,
  73.  -.000117476784 },
  74. { .038077947364,  .243834674613,  .604823123690,  .657288078051,  .133197385825,
  75.  -.293273783279, -.096840783223,  .148540749338,  .030725681479, -.067632829061,
  76.   .000250947115,  .022361662124, -.004723204758, -.004281503682,  .001847646883,
  77.   .000230385764, -.000251963189,  .000039347320 },
  78. { .026670057901,  .188176800078,  .527201188932,  .688459039454,  .281172343661,
  79.  -.249846424327, -.195946274377,  .127369340336,  .093057364604, -.071394147166,
  80.  -.029457536822,  .033212674059,  .003606553567, -.010733175483,  .001395351747,
  81.   .001992405295, -.000685856695, -.000116466855,  .000093588670, -.000013264203 }
  82. };
  83. BOOL DWT_1D(double* pDbSrc, int nMaxLevel,int nDWTSteps, int nInv, int nStep, int nSupp);
  84. BOOL DWTStep_1D(double* pDbSrc, int nCurLevel,int nInv, int nStep, int nSupp);
  85. BOOL DWT_2D(double* pDbSrc, int nMaxWLevel, int nMaxHLevel, int nDWTSteps, int nInv, int nStep, int nSupp);
  86. BOOL DWTStep_2D(double* pDbSrc, int nCurWLevel, int nCurHLevel, int nMaxWLevel, int nMaxHLevel, int nInv, int nStep, int nSupp);
  87. BOOL ImageDWT(LPBYTE lpImage, int nMaxWLevel, int nMaxHLevel,int nDWTSteps, int nInv, int nStep, int nSupp);
  88. int Log2(int n);
  89. BYTE FloatToByte(double f);
  90. char FloatToChar(double f);
  91. //----------------------------------------------------------------------
  92. // 图象增强函数
  93. BOOL GraySegLinTrans(CDib* pDib, int nX1, int nY1, 
  94.  int nX2, int nY2); // 分段线性变换
  95. BOOL HistogramEqualize(CDib* pDib); // 直方图均衡化
  96. BOOL  GeneralTemplate(CDib* pDib,  int nTempWidth, int nTempHeight,
  97.  int nTempCenX, int nTempCenY,
  98.  double* pdbTemp, double dbCoef); // 通用模板操作
  99. BOOL MedianFilter(CDib* pDib,  int nTempWidth, int nTempHeight, 
  100.  int nTempCenX, int nTempCenY); // 中值滤波
  101. unsigned char  GetMedianValue(unsigned char * pUnchFltValue, int iFilterLen); // 获取中值
  102. BOOL  ReplaceDIBColorTable(CDib* pDib, LPBYTE  pColorsTable); // 替换DIB颜色表
  103. void LowPassFilterEnhance(LPBYTE lpImage, int nWidth, int nHeight, int nRadius) ;// 低通滤波
  104. void HighPassFilterEnhance(LPBYTE lpImage, int nWidth, int nHeight, int nRadius);// 高通滤波
  105. void ButterWorthLowPass(LPBYTE lpImage, int nWidth, int nHeight, int nRadius); //  ButterWorth低通滤波
  106. void ButterWorthHighPass(LPBYTE lpImage, int nWidth, int nHeight, int nRadius); //  ButterWorth高通滤波
  107. void LinearSharpen (LPBYTE lpImage, int nWidth, int nHeight); //  线性锐化增强
  108. //-----------------------------------------------------------------------
  109. // imageview.cpp函数原型
  110. BOOL LimbPatternBayer(CDib *pDib);
  111. BOOL DitherFloydSteinberg(CDib *pDib);
  112. //--------------------------------------------------------------------------
  113. // 图象分析函数原型
  114. BOOL DIBHOLENUMBER(CDib *pDib);
  115. BOOL DIBMOMENT(CDib *pDib);
  116. BOOL DIBBARYCENTERMOMENT(CDib *pDib);
  117. BOOL DIBFREAMEWORK(CDib *pDib);
  118. BOOL DIBCHESSBOARDDISRESTORE(CDib *pDib);
  119. BOOL DIBSTREETDIS(CDib *pDib);
  120. BOOL DIBOUTLINE(CDib *pDib);
  121. BOOL WINAPI DIBTrace(CDib *pDib);
  122. //-------------------------------------------------------------------------------------
  123. // 图象变换函数原型
  124. VOID WINAPI FFT_1D(complex<double> * pCTData, complex<double> * pCFData, int nLevel);
  125. VOID WINAPI IFFT_1D(complex<double> * pCFData, complex<double> * pCTData, int nLevel);
  126. VOID WINAPI IFFT_2D(complex<double> * pCFData, complex<double> * pCTData, int nWidth, int nHeight);
  127. VOID WINAPI IDFT_2D(CDib * pDib,double * pTrRstRpart, double * pTrRstIpart);
  128. VOID WINAPI WINAPI DCT(double *f, double *F, int power);
  129. VOID WINAPI WALSH(double *f, double *F, int r);
  130. VOID WINAPI IWALSH(double *F, double *f, int r);
  131. BOOL WINAPI THREECROSS(double *Matrix, int Rank, double *QMatrix, double *MainCross, double *HypoCross);
  132. BOOL WINAPI BSTQ(int Rank, double *MainCross, double *HypoCross, double *Matrix, double Eqs, int MaxT);
  133. BOOL WINAPI DIBDct(CDib *pDib);
  134. BOOL WINAPI DIBWalsh(CDib *pDib);
  135. BOOL WINAPI DIBHOTELLING(CDib *pDib);
  136. VOID WINAPI DIBDFT_2D(CDib * pDib,double * pTrRstRpart, double * pTrRstIpart);
  137. VOID WINAPI DIBFFT_2D(complex<double> * pCTData, int nWidth, int nHeight, complex<double> * pCFData);
  138. //------------------------------------------------------------------------------------
  139. // 图象复原的函数原型
  140. BOOL WINAPI DIBNoRestriction(CDib *pDib );
  141. BOOL WINAPI DIBInverseFilter (CDib *pDib);
  142. BOOL WINAPI DIBNoiseDegeneration (CDib *pDib);
  143. BOOL WINAPI DIBWinnerFilter (CDib *pDib);
  144. BOOL WINAPI DIBMotionDegeneration(CDib *pDib);
  145. BOOL WINAPI DIBMotionRestore(CDib *pDib);
  146. //-------------------------------------------------------------------------------------
  147. // 图象编码函数原型
  148. BOOL WINAPI WRITE2IMG(CDib * pDib, CFile& file);
  149. BOOL WINAPI LOADIMG(CDib * pDib, CFile& file);
  150. BOOL WINAPI DIBBITPLANE(CDib *pDib,BYTE bBitNum);
  151. #endif