soz.h
来自「傅立叶变换和小波变换是图像压缩的重要工具。该代大戏是利用小波变换进行图像压缩。」· C头文件 代码 · 共 24 行
H
24 行
#ifndef CRB_SOZ_H
#define CRB_SOZ_H
/*
* soz : s-context-o-zero for coding small-alphabet contexts
*
* uses a linear array, not a binary tree
*
*/
#include <crblib/arithc.h>
typedef struct { int private; } soz;
extern soz * sozCreate(arithInfo * arithinfo,int size,int totmax,int inc);
extern void sozEncode(soz *sc, int symbol);
extern int sozDecode(soz *sc);
extern void sozHalve(soz *sc);
extern void sozFree(soz *sc);
extern void sozReset(soz *sc);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?