Location:
Search - huffman.rar
Search list
Description: 完成Huffman编解码的程序,并验证Huffman编码的无损性,读入图像格式为*.pic
Platform: |
Size: 100987 |
Author: |
Hits:
Description:
Platform: |
Size: 6619 |
Author: |
Hits:
Description: 十种huffman编码方法
Platform: |
Size: 35065 |
Author: |
Hits:
Description: 各类Huffman编码
Platform: |
Size: 32362 |
Author: |
Hits:
Description: 一个huffman压缩解压算法源码 .rar-a Huffman compression decompression algorithm source code. Rar
Platform: |
Size: 17144 |
Author: 张柏 |
Hits:
Description: An encoding huffman programm.
Platform: |
Size: 108 |
Author: besoyal@yahoo.gr |
Hits:
Description: 霍夫曼编码译码程序-Huffman encoding decoding procedures
Platform: |
Size: 1024 |
Author: 郭巨海 |
Hits:
Description: 用哈夫曼编码实现对文件的压缩-Huffman coding used to achieve compression of the document
Platform: |
Size: 4096 |
Author: 路路 |
Hits:
Description: 霍夫曼coding程序,用此程序可以对任意图像进行霍夫曼编码。-Huffman coding procedures, this procedure can be used for any image Huffman coding.
Platform: |
Size: 5120 |
Author: 许成哲 |
Hits:
Description: mp3的VHDL实现,包括HUFFMAN编码器,量化器,子带滤波器.可用来开发:FPGA,ASIC.-mp3 of VHDL, including HUFFMAN encoder, quantizer, subband filters. Can be used to develop : FPGA, ASIC.
Platform: |
Size: 36864 |
Author: 六六 |
Hits:
Description: 一个huffman压缩解压算法源码 .rar-a Huffman compression decompression algorithm source code. Rar
Platform: |
Size: 16384 |
Author: 张柏 |
Hits:
Description: 自适应huffman编码,即在编/解码过程中根据已编/解码数据来计算各个码字的概率,并动态调整huffman树。包括编码器和解码器。
在vc++.net 2003下开发-adaptive Huffman coding, that is the encoding/decoding process based encoding/decoding data to calculate various code word probability, Dynamic adjustment and Huffman tree. Including the encoder and decoder. In vc. Net 2003 under development
Platform: |
Size: 13312 |
Author: 沈宏伟 |
Hits:
Description: 实现数据的压缩,演示Huffman二叉树的应用。虽然压缩效果不如rar等,但是作为一种算法,具有可借鉴的价值。-data compression, presentations Huffman binary tree applications. Although not rar compression, but as an algorithm that can draw is the value.
Platform: |
Size: 6144 |
Author: 祝桦岸 |
Hits:
Description: 超全的MP3压缩算法,包括Huffman算法,使用DSP实现更好。
PS:今天上传的源代码都是C代码,除了介绍MSP430的汇编书籍
-extra-MP3 compression algorithm, including Huffman algorithm, better use of DSP. PS : Today uploaded the source code is C code, in addition to the compilation books MSP430
Platform: |
Size: 33792 |
Author: 张宇 |
Hits:
Description: 在Jpeg中Huffman采用的是范式Huffman编码。经过查相关资料有两种不同说法,请高手指点。谢谢!
1、构造范式 Huffman 编码的方法大致是:
分别统计从最大编码长度 maxlength 到 1 的每个长度对应了多少个符号。根据这一信息从 maxlength 个 0 开始以递增顺序为每个符号分配编码。例如,编码长度为 5 的符号有 4 个,长度为 3 的有 1 个,长度为 2 的有 3 个,则分配的编码依次为: 00000 00001 00010 00011 001 01 10 11
问题:如果按照这种说法那么我在一付图像中渡到的数据是:编码长度为 6 的符号有 1 个,长度为 5 的有 1 个,长度为 4 的有 3 个,长度为3的个数为4个,长度为2的个数为1个。按照以上的算法得到的编码为:000000;00001;0010;0011;001;010;011;100;01。出现001是0011的前缀。在读取数据流的时候将不能区别。
2、另外一种说法,曾经发帖问过。前面的长度编码加1左移一位得到后面长度的编码。像我这个例子如何确定最短码的起始值?
谢谢大家指点具体的范式Huffman编码实现-in which Huffman is the paradigm Huffman coding. After investigations related information in two different arguments, please master guiding. Thank you! 1, tectonic paradigm Huffman coding method is generally : statistics separately from the largest maxlength length coding to a length corresponding to each of the number of symbols. According to the information from maxlength-0 progressive order of the distribution of each symbol coding. For example, the length coding for the five symbols have four, three lengths of a length of two to three. the allocation of coding followed : 00000 00001 00010 00011 001 01 10 11 questions : According to this view, if I pay in a transition to the image data is : coding length of the six are a symbol, 5 lengths of a length of 4 to 3, the length of three to fo
Platform: |
Size: 8192 |
Author: gaorui |
Hits:
Description: 包括:霍夫曼编码、Shannon-Fano编码、算术编码、位平面编码预测编码-Include: Huffman coding, Shannon-Fano coding, arithmetic coding, bit plane coding prediction coding
Platform: |
Size: 235520 |
Author: 刘伟 |
Hits:
Description: 实现最优二叉树的构造;在此基础上完成哈夫曼编码器与译码器。 假设报文中只会出现如下表所示的字符:
字符 A B C D E F G H I J K L M N
频度 186 64 13 22 32 103 21 15 47 57 1 5 32 20 57
字符 O P Q R S T U V W X Y Z , .
频度 63 15 1 48 51 80 23 8 18 1 16 1 6 2
要求完成的系统应具备如下的功能:
1.初始化。从终端(文件)读入字符集的数据信息,。建立哈夫曼树。
2.编码:利用已建好的哈夫曼树对明文文件进行编码,并存入目标文件(哈夫曼码文件)。
3.译码:利用已建好的哈夫曼树对目标文件(哈夫曼码文件)进行编码,并存入指定的明文文件。
4.输出哈夫曼编码文件:输出每一个字符的哈夫曼编码。
Platform: |
Size: 132096 |
Author: 张娟 |
Hits:
Description: adaptive huffman.rar can Download
Platform: |
Size: 2398208 |
Author: Khuong |
Hits:
Description: 这个程序主要是对图像进行huffman编码,从实现了对图像的压缩编码。,This program huffman coding image from image coding.
Platform: |
Size: 4096 |
Author: 于国涛 |
Hits:
Description: 给定n个权值作为n个叶子结点,构造一棵二叉树,若带权路径长度达到最小,称这样的二叉树为最优二叉树,也称为哈夫曼树(Huffman tree)。,Given n weights as a the n leaf node, construct a binary tree, with the right path length to a minimum, said such a binary tree for the optimal binary tree, also known as Huffman tree (Huffman tree).
Platform: |
Size: 1024 |
Author: chenqun |
Hits: