搜索资源列表
文本与二值图像的游程压缩[xtulbd,050418]
- 【文本与二值图像的游程】1. 文本游程压缩的原理 对重复字段采用3符号标识法:(1) 重复提示符,比如@,#等;(2) 游程长度参数或重复次数,若用一个字节表示,最大长度可为255个重复字;(3) 重复字符。以上三部分合称为重复因子。可见要获得压缩效益,重复字符应在3个以上。2. 图像游程压缩的原理 对于二值图像,原始数据为零一矩阵,压缩时逐行处理该矩阵:(1) 连续n个1,表示为+n;(2) 连续n个0,表示为-n。-text and binary image -- an outbound t
MZ
- MH编码是用于黑白二进制文件传真的数据压缩。文件传真是指一般文件、图纸、手写稿、表格、报纸等文件的传真。他们是黑白二值的,也就是信源是二元信源q=2。 MH编码是一位编码方案,即对一行一行的数据进行编码,它将游程编码和霍夫曼编码想结合,是一种标准的改进霍夫曼码。 -MH encoded binary files are used for black-and-white facsimile data compression. Document refers to the general f
Huffman
- 通过Huffman编码,实现对文件(如文本文件)的压缩和解压。压缩后生成二进制文件。压缩效率高。C++版数据结构与算法的典型应用。-By Huffman coding, to achieve the file (such as a text file) of the compression and decompression. Compressed binary file generated. Compression efficiency.
haffman
- 对英文文本进行哈弗曼二进制编码,输出到txt文本-The English text Hafu Man binary encoding, the text output to txt
ht
- 本程序采用哈弗曼编码技术对用户输入的文本进行压塑,当用户按回车键之后,便会显示压塑之后的文本,并且会显示每个字符的二进制代码。-This code is used to be compress the text you enter,adopting the method of haffmancode .When you enter the resource text ,you will see the compressing mold and the binary code of every c
LZ77
- 文本数据LZW压缩和解压缩程序,适用于二进制文本和十六进制文本数据的压缩处理-Text data LZW compression and decompression procedures, applicable to binary text and sixteen binary text data compression
ArithmeticCoding
- C语言环境,二进制算术编码,实现对文本的压缩-C language environment, binary arithmetic coding to achieve compression of the text
lzw_decode
- 使用lzw方法对二进制文本数据进行压缩处理。(Use the LZW method to binary text data compression.)