liftdwt97.h

来自「小波变换去噪和97提升小波和离散小波变换的matlab程序」· C头文件 代码 · 共 31 行

H
31
字号
// LiftDwt.h: interface for the CLiftDwt class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_LIFTDWT97_H__DEB05844_16FE_4D7E_A6B1_7D05D3522CE8__INCLUDED_)
#define AFX_LIFTDWT97_H__DEB05844_16FE_4D7E_A6B1_7D05D3522CE8__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "MainFrm.h"
class CLiftDwt97  
{
public:
	void Attach(LPVOID lpParam);
	CMainFrame* pWnd;
	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(double *buffer, int buflen);
	void Dwt1D(double *buffer, int buflen);
	void IDwt2D(double buffer[], int height, int width, int lv);
	void Dwt2D(double buffer[], int height, int width, int lv);
	CLiftDwt97();
	virtual ~CLiftDwt97();

};

#endif // !defined(AFX_LIFTDWT_H__DEB05844_16FE_4D7E_A6B1_7D05D3522CE8__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?