Description: Huffman 这个名字,程序员们至少会联想到二叉树和二进制编码。的确,我们总以 Huffman 编码来概括 D.A.Huffman 个人对计算机领域特别是数据压缩领域的杰出贡献。我们知道,压缩 = 模型 + 编码,作为一种压缩方法,我们必须全面考虑其模型和编码两个模块的功效;但同时,模型和编码两个模块又相互具有独立性。-Huffman, programmers will at least think of a binary tree and binary coding. Indeed, we always Huffman coding to summarize D. A. Huffman personal computer areas, especially in the field of data compression outstanding contribution. We know that the compression encoding = model, as a compression method, we must take full account of two model and coding module effectiveness; But at the same time, model and coding module of two mutual independence. Platform: |
Size: 2272 |
Author:亞男 |
Hits:
Description: Huffman 这个名字,程序员们至少会联想到二叉树和二进制编码。的确,我们总以 Huffman 编码来概括 D.A.Huffman 个人对计算机领域特别是数据压缩领域的杰出贡献。我们知道,压缩 = 模型 + 编码,作为一种压缩方法,我们必须全面考虑其模型和编码两个模块的功效;但同时,模型和编码两个模块又相互具有独立性。-Huffman, programmers will at least think of a binary tree and binary coding. Indeed, we always Huffman coding to summarize D. A. Huffman personal computer areas, especially in the field of data compression outstanding contribution. We know that the compression encoding = model, as a compression method, we must take full account of two model and coding module effectiveness; But at the same time, model and coding module of two mutual independence. Platform: |
Size: 2048 |
Author:亞男 |
Hits:
Description: 对原始信号做DCT的算法:Cox 和Piva 等人提出的DCT技术的经典之作。Cox利用随机数发生器产生标准正态序列作为水印信息对图像进行整体DCT变换后,选取除去DC系数之外部分较低频率系数叠加水印信息 Piva则修改整幅图像的中频部分。对原始信号分块后,再作DCT的算法:Hsu和Wu 把图像进行8*8分块,将一个二进制序列作为水印放入DCT的中频区;有些学者则计算整个图像的DCT,把一个实数序列嵌入DCT的中频系数上。选择中频区的好处是一方面尽量减少嵌入信息对图像主观视觉的影响;同时,尽量避免有损压缩对水印信息可能带来的损失。还有一种DCT方法就是把水印信息嵌入到高频系数上,但是采用这种方法,抗压缩性非常差。-done to the original signal DCT algorithm : Cox Piva and others made the DCT technology classic. Cox using random number generator producing standard normal sequence information as a watermark image of the overall DCT, DC coefficient selection removed outside some lower frequency coefficient superposition watermark information Piva will be replaced by images of the entire IF part. The original signal block, before making the DCT algorithm : Wu Hsu and put images 8* 8 block, a binary sequence as watermarks Add DCT IF; Some scholars calculated whole image of DCT, a real sequence embedded IF DCT coefficients. IF the choice is a good one to minimize the embedded information to the subjective visual images; Meanwhile, try to avoid Compression right watermark information possible losses. There Platform: |
Size: 33792 |
Author:圣子到 |
Hits:
Description: 自适应编码
本发明的目标是生成一种方法:对数组压缩和解压缩编码,特别是二进制数组;对数组整体的编码技术;展现了一个通过极限熵得到的特别的压缩比率。
-Adaptive Coding goal of the invention is to generate a Method : array compression coding, in particular binary array; a whole array of coding techniques; demonstrated a limit entropy through the special compression ratio. Platform: |
Size: 105472 |
Author:11111111 |
Hits:
Description: matlab编写的对二值图像的数字水印添加与提取程序。压缩包中有示例图片。可以添加水印,结果肉眼不易分辨出变化,不影响使用。可加入信息长度达100个字节。提取时可验证是否被修改过,如未修改,可提取隐藏信息。当有修改发生时,可以定位修改的位置,并在图上标出。标识面积占修改面积的75%,一般修改都能标出-matlab prepared binary image of the digital watermark added and extraction procedures. Compression package has sample images. Can add watermarks, the results of the changes are not easily distinguishable from the naked eye, does not affect use. Can be added to the information length of 100 bytes. Verifiable extraction has been modified, if modified, can extract hidden information. When a modification occurs, you can modify the location of positioning and marked maps. Logo area accounted for 75 to amend the area generally can be identified modifications Platform: |
Size: 36864 |
Author:张亮 |
Hits:
Description: 一个matlab写的golomb coder,可以用来编码2进制数据。-Matlab write a golomb coder, can be used to encode binary data 2. Platform: |
Size: 1024 |
Author:LEO LIU |
Hits:
Description: 针对二值图像的压缩实现了算术编码以及解码 并在此基础上实现了一节自适应算术编码 有很好的压缩效果-For binary image compression realize the arithmetic coding and decoding and on this basis has been realized a very good adaptive arithmetic coding compression has the effect of Platform: |
Size: 5120 |
Author:xwolfs |
Hits:
Description: 自己用matlab写的算术编码的程序,信源为二元信源,信源序列、码长均可自定义-Using matlab to write their own arithmetic coding procedures for the binary source-source, source sequence, code length can be custom Platform: |
Size: 5120 |
Author:李金荣 |
Hits:
Description: ) Compression using huffman code
-with a number of bits k per code word
-provide huffman table
Huffman coding is optimal for a symbol-by-symbol coding with a known input probability distribution.This technique uses a variable-length code table for encoding a source symbol. The table is derived in a particular way based on the estimated probability of occurrence for each possible value of the source symbol .Huffman coding uses a specific method for representing each symbol, resulting in a prefix code that expresses the most common characters using shorter strings of bits than those used for less common source symbols.The Huffman coding is a procedure to generate a binary code tree.
-) Compression using huffman code
-with a number of bits k per code word
-provide huffman table
Huffman coding is optimal for a symbol-by-symbol coding with a known input probability distribution.This technique uses a variable-length code table for encoding a source symbol. The table is derived in a particular way based on the estimated probability of occurrence for each possible value of the source symbol .Huffman coding uses a specific method for representing each symbol, resulting in a prefix code that expresses the most common characters using shorter strings of bits than those used for less common source symbols.The Huffman coding is a procedure to generate a binary code tree.
Platform: |
Size: 1024 |
Author:ria |
Hits:
Description: 2D-DCT 压缩图像后,通过QPSK,AWGN信道编码传输后,IDCT解压缩回原始图像,适用于任何图像-Using DCT to compress the orginal image, I use zigzag program, quantization, dct compression, then change the vector to bineary bit to pass through the QPSK channel. And from the binary array, I use IDCT to reconstructe the orignial image. working perfectly. Platform: |
Size: 4036608 |
Author:Jackie |
Hits:
Description: 利用Matlab仿真脉冲编码调制(PCM)及A律、μ律PCM对声音进行压缩编解码过程。
脉冲编码调制(PCM,Pulse Code Modulation)是一种将模拟语音信号转换成数字信号的编码方式。波形编码器的作用是对采样后的信号样本进行量化和编码。从数学上来看,量化过程就是把一个连续幅度值的无限数集合映射成一个离散幅度值的有限数集合,编码就是用一组二进制数来表示这些映射后的有限数。国际标准化的PCM采用折叠二进制码,符合长途电话质量。根据量化方法的不同,PCM可分为均匀量化PCM和对数PCM两大类,对数PCM中,2Aμ律和律编码都已被定为国际标准。-Matlab simulation using pulse code modulation (PCM) and the A law, μ law PCM codec for voice compression process.
Pulse Code Modulation (PCM, Pulse Code Modulation) is an analog voice signal into digital signal encoding. The role of the encoder waveform is sampled signal sample quantization and coding. From the mathematical point of view, the process is to quantify the magnitude of the value of a continuous set of infinite number of maps into a finite number of discrete set of amplitude values , encoding is to use a set of binary digits, said after a limited number of these maps. By folding the International Standardization of PCM binary code, in line with long-distance telephone quality. According to the different quantitative methods, PCM can be divided into uniform quantization PCM PCM and the number of two categories, on the number of PCM in, 2Aμ law and legal codes have been designated as international standards. Platform: |
Size: 954368 |
Author:tanii |
Hits:
Description: pcm编码A律Simulink和MATLAB(PCM in the communication system to complete the voice signal digital function, and its implementation mainly includes three steps to complete: sampling, quantization, coding. The binary representation of time discrete, amplitude discrete and quantized signals is completed respectively. According to CCITT, in order to improve the performance of small signal quantization, using companding non-uniform quantization, there are two suggestions, respectively A law and the law of our country, using the A law, the A law compression complex, often using 13 line method for encoding, using non uniform quantization coding PCM.) Platform: |
Size: 32768 |
Author:面包不面
|
Hits:
Description: Context-adaptive binary arithmetic coding (CABAC) is a form of entropy encoding used in the H.264/MPEG-4 AVC and High Efficiency Video Coding (HEVC) standards. It is a lossless compression technique, although the video coding standards in which it is used are typically for lossy compression applications. CABAC is notable for providing much better compression than most other entropy encoding algorithms used in video encoding, and it is one of the key elements that provides the H.264/AVC encoding scheme with better compression capability than its predecessors. Platform: |
Size: 16384 |
Author:rezajava
|
Hits:
Description: 使用游程编码对二值图进行压缩和解压,适合学习,注释详细。
该编码属于无损压缩编码,是栅格数据压缩的重要编码方法。对于二值图有效。(This code belongs to lossless compression coding and is an important coding method for grid data compression. It is valid for the two value graph.) Platform: |
Size: 45056 |
Author:MYpudn |
Hits: