intdwt97.h
来自「小波变换去噪和97提升小波和离散小波变换的matlab程序」· C头文件 代码 · 共 33 行
H
33 行
// LiftDwt.h: interface for the CLiftDwt class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_INTDWT97_H__DEB05844_16FE_4D7E_A6B1_7D05D3522CE8__INCLUDED_)
#define AFX_INTDWT97_H__DEB05844_16FE_4D7E_A6B1_7D05D3522CE8__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "mainfrm.h"
class CIntDwt97
{
public:
void Attach(LPVOID lpParam);
void filterset(double t);
double *h, *h1;
double p_alfa, p_beta, p_gama, p_delta, p_kesa,p_t; // the parametrixes
int shift;
void IDwt1D(int *buffer, int buflen);
void Dwt1D(int *buffer, int buflen);
void IDwt2D(int buffer[], int height, int width, int lv);
void Dwt2D(int buffer[], int height, int width, int lv);
CIntDwt97();
virtual ~CIntDwt97();
protected:
CMainFrame* pWnd;
};
#endif // !defined(AFX_LIFTDWT_H__DEB05844_16FE_4D7E_A6B1_7D05D3522CE8__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?