⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 subbandsymbol.h

📁 该程序把数字图像处理与小波变换结合起来
💻 H
字号:
#ifndef __SUBBANDSYMBOL_H_
#define __SUBBANDSYMBOL_H_
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/* 
 * Mow-Song, Ng 2/9/2002
 * msng@mmu.edu.my
 * http://www.pesona.mmu.edu.my/~msng
 *
 * I do not claim copyright to the code, but if you use them or modify them,
 * please drop me a mail.
 *
 */
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/

#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <assert.h>

#include "memchk.h"

typedef struct SubbandSymbolStruct{
	int hsize, vsize;
	int nsteps;
	int nSubbands;
	int *subbandSize;
	int *subbandHSize;
	int *subbandVSize;
	int *symbol;
	int **subbandPtr;
} SubbandSymbol; 

SubbandSymbol *SubbandSymbolAlloc(int hsize, int vsize, int nsteps);
int SubbandSymbolGetNodeSymbol(SubbandSymbol *symbol, int scale, 
										 int orientation, int x, int y);
void SubbandSymbolSetNodeSymbol(SubbandSymbol *symbol, int scale, 
										  int orientation, int x, int y, int s);
void SubbandSymbolDealloc(SubbandSymbol *symbol);
void SubbandSymbolError(char *fmt, ...);

#endif

⌨️ 快捷键说明

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