📄 subbandsymbol.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 + -