dwt.h
来自「本程序使用VC++编写」· C头文件 代码 · 共 33 行
H
33 行
// Dwt.h: interface for the Dwt class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_DWT_H__A9308633_D311_4A97_BC73_040C6E3B66BB__INCLUDED_)
#define AFX_DWT_H__A9308633_D311_4A97_BC73_040C6E3B66BB__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "MainFrm.h"
class CDwt
{
public:
void Attach(LPVOID);
void IDwt1D(double *buffer, int buflen, int hBen, int hEnd, int h1Ben, int h1End, double *h, double *g);
void FilterSet(float t);
void IDwt2D( double *buffer, int height, int width, int lv);
void Dwt2D(double *buffer, int height, int width, int lv);
void Dwt1D(double *buffer, int buflen, int hBen, int hEnd, int h1Ben, int h1End, double *h, double *g);
CDwt();
int hBen, hEnd, h1Ben, h1End, hLen, h1Len;
double *h, *g, *h1, *g1;
virtual ~CDwt();
protected:
CMainFrame* pWnd;
};
#endif // !defined(AFX_DWT_H__A9308633_D311_4A97_BC73_040C6E3B66BB__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?