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

📄 rungae.h

📁 傅立叶变换和小波变换是图像压缩的重要工具。该代大戏是利用小波变换进行图像压缩。
💻 H
字号:
#ifndef GE_RUNGAE_H
#define GE_RUNGAE_H

#include <crblib/arithc.h>

typedef int rung_t;
typedef struct srung srung;

extern const ulong asmladder;

extern void rungModelInit(rung_t * rung);
extern void rungDecoderInit(void); // arithDecodeInit() calls this for us

extern void rungModelEncBit(arithInfo * ari,bool bit,rung_t * rung);
extern bool rungModelDecBit(arithInfo * ari,rung_t * rung);

extern void rungModelBit(rung_t * rung,bool bit);

extern void rungEncodeUnary(arithInfo *ari,uint val,rung_t * rung);
extern uint rungDecodeUnary(arithInfo *ari,rung_t * rung);

extern void rungEncodeUnaryMax(arithInfo *ari,uint val,rung_t * rung,uint max);
extern uint rungDecodeUnaryMax(arithInfo *ari,rung_t * rung,uint max);

extern uint rungGetP0Shifted10(rung_t * rung);

extern void rungModelSetByCounts(rung_t * rung,int c0,int c1);

#endif // rungc

⌨️ 快捷键说明

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