23 lines
641 B
C
23 lines
641 B
C
|
|
#ifndef _NLMEANS_H
|
|||
|
|
#define _NLMEANS_H
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**********************************<2A><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>***********************************/
|
|||
|
|
// NLM<4C>㷨<EFBFBD><E3B7A8><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
void NlMeansDenoiseCenter(unsigned char bitWitdth,
|
|||
|
|
unsigned short *pSrc16,
|
|||
|
|
unsigned char* pSrc8,
|
|||
|
|
int nWidth, int nHeight);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/*----------------------------------------------------------------------------*/
|
|||
|
|
//<2F><>Ե<EFBFBD><D4B5>չ
|
|||
|
|
void ImageExpandINT(unsigned short* pSrc,int nWidth,int nHeight,unsigned short *pDst,int NewWidth,int NewHeight);
|
|||
|
|
|
|||
|
|
|
|||
|
|
//<2F><>Ե<EFBFBD>и<EFBFBD>
|
|||
|
|
void ImageExpandInverseINT(unsigned short* pSrc,int nWidth,int nHeight,unsigned short *pDst,int NewWidth,int NewHeight);
|
|||
|
|
|
|||
|
|
|
|||
|
|
#endif
|