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

搜索资源列表

  1. lzw-hafuman

    0下载:
  2. 图像编码与均衡化规定化、 examplehaffuman.m 哈夫曼应用实例 examplepalar2.m 平面一般分割 examplepalar.m 平面分割 1-D 游程编码应用实例 lzwexample.m lzw编码的应用实例 erzhifenjie.m 平面的分割8层 suanshubianma.m 算术编码 code1.m 图像直方图均衡化处理 code2.m 图像直方图规定化处理
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2008-10-13
    • 文件大小:582000
    • 提供者:赖官铨
  1. LZW

    1下载:
  2. LZW编码,基于VC6.0平台,应用于图形图像编码,算法类似于字典编码法。
  3. 所属分类:压缩解压

    • 发布日期:2008-10-13
    • 文件大小:16325
    • 提供者:shen
  1. LZW

    0下载:
  2. 图像处理中lzw编码,主要针对灰度图像,主要针对灰度图像
  3. 所属分类:图形图像处理(光照,映射..)

  1. lzw

    1下载:
  2. LZW.c 本演示程序提供了LZW编码法的压缩和解压缩函数,并实现了对图象 文件的压缩和解压缩
  3. 所属分类:压缩解压

    • 发布日期:2008-10-13
    • 文件大小:3475
    • 提供者:zhangpin
  1. LZW

    0下载:
  2. LZW编码法的压缩和解压缩函数,并实现了对图象文件的压缩和解压缩。
  3. 所属分类:压缩解压

    • 发布日期:2008-10-13
    • 文件大小:13773
    • 提供者:魏梨君
  1. lzw1

    0下载:
  2. 本程序提供了lzw编码的压缩和解压缩函数,并实现对图象文件的压缩和解压缩-the procedures provided 4,558,302 coding compression functions, and to achieve the right image file compression
  3. 所属分类:图形图象

    • 发布日期:2008-10-13
    • 文件大小:13039
    • 提供者:徐亮
  1. LZW编码源程序

    0下载:
  2. 本程序实现了LZW编码,主要是针对文字压缩,自建码表,可实现编码和译码。-realized by the LZW coding is targeted mainly at text compression, self-table, achievable coding and decoding.
  3. 所属分类:压缩解压

    • 发布日期:2008-10-13
    • 文件大小:20106
    • 提供者:钟祖豪
  1. lzw编码

    0下载:
  2. 所属分类:C#编程

    • 发布日期:2011-06-27
    • 文件大小:1565
    • 提供者:gykko0101
  1. LZW的编码和解码

    0下载:
  2. LZW编码和解码的c++代码
  3. 所属分类:密码/编码算法

  1. lzw.rar

    1下载:
  2. 一个c语言实现的基于字典编码技术的lzw数据压缩算法,能正确的实现压缩和解压缩,C language to achieve a dictionary-based coding technology lzw data compression algorithms, to achieve the correct compression and decompression
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-03-22
    • 文件大小:3711
    • 提供者:娜娜
  1. ImageProcess

    0下载:
  2. 特技显示: 图像扫描、图像插入、百叶窗显示、马赛克效果、栅格条交错、从全黑淡入、图像伸缩 像素运算: 查看直方图、直方图均衡、线性变换、阈值变换、窗口变换、灰度拉伸、对数变换 几何变换: 图像镜像、图像平移、图像旋转、图像缩放 正交变换: 离散傅立叶变换、离散余弦变换、沃尔什哈达玛变换、离散K-L变换、小波变换 图像复原: 逆滤波复原、维纳滤波复原 图像增强: 灰度变换调整、直方图修整法、图像平滑法、中值滤波、低通滤波、图像锐化、高通滤波
  3. 所属分类:Special Effects

    • 发布日期:2017-03-23
    • 文件大小:902902
    • 提供者:hongye
  1. lzw

    1下载:
  2. 实现lzw词典编码方法 Lzw编码算法的设计思路: 1.开始时的词典包含所有的根(先将所有单个字符编码),当前缀P时空的; 2.当前字符(C)=字符流中的下一个字符; 3.判断缀-符串P+C是否在词典中 A如果“是”:P=P+C//(用C扩展P) B.如果“否”: a 把代表当前前缀P的马子输出到码字流; b 把缀-符串P+C添加到词典; c 令P=C//(现在的P仅包含一个字符C); 4. 判断字符流中是否还有码字要译 (1)如果是,就返回到2;
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-21
    • 文件大小:1236
    • 提供者:符晓娟
  1. maps

    0下载:
  2. lzw 编码,自动实现编码!初始字典编码长度为26个字母-LZW coding, automatic code! The initial length of the dictionary encoding 26 letters
  3. 所属分类:Streaming_Mpeg4

    • 发布日期:2017-03-29
    • 文件大小:45948
    • 提供者:andrew
  1. lzw

    1下载:
  2. 一个完整的LZW编码工程,只需输入文件名就可以用了,程序简单清晰,适合初学者。-LZW encoding a complete project, simply enter the file name can be used, clear and easy procedure, suitable for beginners.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-25
    • 文件大小:368239
    • 提供者:张飞艳
  1. lzw

    0下载:
  2. 数据压缩,c语言,vc实现,lzw编码算法-Data compression, c language, vc achieve, lzw coding
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-16
    • 文件大小:13387
    • 提供者:dyg
  1. MM09

    0下载:
  2. 多媒体无损编码实现。( 霍夫曼编码,简单算术编码,LZW编码)-Lossless Coding of multimedia. (Huffman code, the simple arithmetic coding, LZW coding)
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-14
    • 文件大小:4107
    • 提供者:杭建
  1. LZW

    0下载:
  2. 本演示程序提供了LZW编码法的压缩和解压缩函数,并实现了对图象文件的压缩和解压缩-This demo provides a coding method of LZW compression and decompression functions, and the image files on the compression and decompression
  3. 所属分类:Special Effects

    • 发布日期:2017-04-24
    • 文件大小:12380
    • 提供者:刘慧
  1. code

    0下载:
  2. 图像编码(包括哈夫曼编码、香农弗诺编码、行程编码、LZW编码、JEPG编码)-Image Coding (including Huffman coding, Shannon弗诺coding, Run-Length Coding, LZW coding, JEPG code)
  3. 所属分类:Special Effects

    • 发布日期:2017-04-05
    • 文件大小:2636
    • 提供者:彭素静
  1. LZW

    0下载:
  2. 基于lzw编码的文件压缩和解压小程序,已经通过验证,可以有效进行文件的压缩和解压-Lzw based compression and decompression of files encoded small program has been validated, can be file compression and decompression! !
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-03-23
    • 文件大小:232406
    • 提供者:林雨雄
  1. LZW编码

    0下载:
  2. 这个文档是我大学时候多媒体的一个实验作业,里面要求实现LZW压缩方法。大家可以在文档中自行查阅。(This document is an experimental operation of multimedia in my university. It requires four simple compression methods, namely, Huffman, adaptive Huffman, LZW and arithmetic coding. Because of the need
  3. 所属分类:压缩解压

    • 发布日期:2018-04-21
    • 文件大小:1024
    • 提供者:tiger12312
« 12 3 4 5 6 7 8 »
搜珍网 www.dssz.com