CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - LZW编码

搜索资源列表

  1. LZW_ekansrm

    0下载:
  2. 使用标准库写的一个LZW编码(非LZW编码压缩)的源程序,程序简洁易懂,给初学者作为参考。-LZW coding source file using STL by ekansrm
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:824
    • 提供者:
  1. HuffmanCoding

    0下载:
  2. 多媒体类别,包含Huffman编码、lzw编码和算数编码三种,对“I have a dream”进行编码-Including Huffman Coding、lzw coding and Arithmetic coding
  3. 所属分类:Multimedia Develop

    • 发布日期:2017-04-04
    • 文件大小:74806
    • 提供者:曹明智
  1. codeanddecode

    0下载:
  2. 关键字:多媒体;算法;LZW编码解码;自适应算术编码解码 本代码描述了LZW的编码原理和自适应编码的原理-multimedia algorithm LZW code and decode Adaptive arithmetic code and decode
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-03-30
    • 文件大小:3740
    • 提供者:qyp
  1. lzw_256

    0下载:
  2. C/C++实现LZW编码,对二进制浮点数(正负皆可)可进行有效压缩,解压无错,字典长度为256。-C/C++ LZW coding for binary floating-point numbers (can be positive or negative) can be an effective compression and decompression error-free, dictionary length is 256.
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-03
    • 文件大小:2038
    • 提供者:yangdong
  1. lzw_code_gif_code

    0下载:
  2. lzw编码,gif图片编码,lena图的lzw可变长编解码-lzw encoding the gif picture coding, lena graph lzw variable length code decoding
  3. 所属分类:Video Capture

    • 发布日期:2017-11-06
    • 文件大小:53739
    • 提供者:hongyu
  1. LZW_demo

    0下载:
  2. LZW编码的实现 LZW就是通过建立一个字符串表,用较短的代码来表示较长的字符串来实现压缩。-LZW coding to achieve LZW is through the creation of a string table, with a shorter code to represent a long string to achieve compression.
  3. 所属分类:software engineering

    • 发布日期:2017-11-10
    • 文件大小:6730
    • 提供者:张怡然
  1. LZW

    0下载:
  2. 词典编码 使用LZW算法实现 最后输出词典-Dictionary encoded using the LZW algorithm to achieve the final output dictionary
  3. 所属分类:Multimedia program

    • 发布日期:2017-11-13
    • 文件大小:1465
    • 提供者:诈欺猎人P
  1. -imagecompress-encod-

    0下载:
  2. 图片的压缩和编码解码程序,含多种方法,包括哈弗曼编码,行程编码,lzw编码和jpeg编码-Image compression and encoding and decoding process, including a variety of methods, including Huffman coding, run length coding, lzw encoding and jpeg encoding
  3. 所属分类:Special Effects

    • 发布日期:2017-11-07
    • 文件大小:235756
    • 提供者:黄小菲
  1. Entropy-coding-source-program

    0下载:
  2. 熵编码(entropy encoding)是一类利用数据的统计信息进行压缩的无语义数据流之无损编码。本章先介绍熵的基本概念,然后介绍香农-范诺(Shannon-Fano)编码、哈夫曼(Huffman)编码、算术编码(arithmetic coding)、行程编码(RLE)和LZW编码等常用的熵编码方法。  哈夫曼编码建议了一种将位元进位成整数的算法,但这个算法在特定情况下无法达到最佳结果。为此有人加以改进,提供最佳整数位元数。这个算法使用二叉树来设立一个编码。这个二叉树的终端节点代表被编码的字母
  3. 所属分类:3D Graphic

    • 发布日期:2017-11-05
    • 文件大小:18688499
    • 提供者:杨飞帆
  1. lzw

    1下载:
  2. LZW(Lempel Ziv Welch)压缩编码是一种先进的数据压缩技术,属于无损压缩编码,该编码主要用于图像数据的压缩。对于简单图像和平滑且噪声小的信号源具有较高的压缩比,并且有较高的压缩和解压缩速度。-lzw compression
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-11-07
    • 文件大小:754939
    • 提供者:宁有名
  1. LZW

    0下载:
  2. LZW压缩算法编码源程序,基于C语言 实测可用-LZW compression algorithm coding source
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-11-19
    • 文件大小:1104
    • 提供者:黄俊
  1. lzw

    0下载:
  2. LZW压缩算法,基于字典的编码. 逻辑简单,硬件实现价廉,运算速度快.-LZW compression algorithm, dictionary-based encoding logic is simple, inexpensive hardware, computing speed.
  3. 所属分类:File Operate

    • 发布日期:2017-12-10
    • 文件大小:699726
    • 提供者:刘杰
  1. LZW

    0下载:
  2. LZW压缩与解压 修改LZW压缩和解压的程序,完成下述要求: 1. 每完成xkbytes的文本压缩/解压,重新初始化码本(code table)。此过程可以看作是码本对文本内容的自适应调整过程,每编码部分文本后,码本重新初始化并根据后续文本内容生成,可以获得更好的压缩率。 2. 测试给出的文本文件,需要测试的x取值范围{10, 20, 30, 40, 50},并对比五种取值的压缩/解压效果(包括压缩率和压缩时间等)。程序参数需添加x,例如调用“Compress text 30”
  3. 所属分类:Data structs

    • 发布日期:2017-11-11
    • 文件大小:956441
    • 提供者:酉永松
  1. image-coding

    0下载:
  2. 用matlab实现算数编码、哈弗曼编码以及LZW编码(能够区分大小写和数字进行编码)含测试文本和结果-Using matlab realize arithmetic coding, Huffman coding and LZW coding (case-sensitive and numbers can be encoded) containing test text and results
  3. 所属分类:Special Effects

    • 发布日期:2017-04-07
    • 文件大小:6529
    • 提供者:文闯
  1. 1

    0下载:
  2. FFT 与LZW编码算法相结合,实现压缩功能,MATLAB仿真实现-FFT LZW compress
  3. 所属分类:assembly language

    • 发布日期:2017-04-06
    • 文件大小:4239
    • 提供者:chenkang
  1. LZW

    0下载:
  2. 使用java编写的lzw算法 对文章进行编码、解码等操作-Lzw algorithm using java prepared for articles carried encoding, decoding and other operations
  3. 所属分类:Java Develop

    • 发布日期:2017-04-01
    • 文件大小:18129
    • 提供者:my
  1. LZW

    0下载:
  2. 对于现有文件,实现lzw的编码与译码,注意各文件之间的联系-For existing files, the use of coding libraries, compile and interpret realize barcode
  3. 所属分类:matlab

    • 发布日期:2017-04-14
    • 文件大小:5089
    • 提供者:李本质
  1. lzw

    0下载:
  2. 数据压缩课压缩编码第二次大作业,Lzw压缩编码-The second homework of data compression coding lesson. It s about Lzw coding.
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-13
    • 文件大小:1637
    • 提供者:许天骄
  1. lzwcode

    0下载:
  2. LZW编码解码的实现 输入原始的字典 对其进行编码 -LZW codec implementations   Enter the original dictionary Encode
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-08
    • 文件大小:398411
    • 提供者:me
  1. Huffman_math_lzw

    0下载:
  2. 图像压缩中基本的统计编码方式 LZW编码 算术编码以及哈弗曼编码 -Basic statistical image compression encoding LZW coding arithmetic coding and Huffman coding
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-17
    • 文件大小:500055
    • 提供者:me
« 1 2 3 4 56 7 8 »
搜珍网 www.dssz.com