CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 压缩解压 搜索资源 - 转化

搜索资源列表

  1. LiftingWaveTransform

    1下载:
  2. 此为基于二代提升小波的阈值压缩算法源码,其中可以设置小波变换的分解层数,使用的小波名称,及各层阈值设置计算公式中的参数。并将低频系数转化为十六进制,方便在其上进一步压缩,如采用Huffman压缩等,程序思路清楚,附有完整的注释,可以使用多种小波,并且很好得体现了二代小波的思想,对于初学小波者帮助很大。-based on the second generation of this upgrade wavelet compression algorithm threshold source, whi
  3. 所属分类:压缩解压

    • 发布日期:2008-10-13
    • 文件大小:12454
    • 提供者:孙金凤
  1. IJL

    0下载:
  2. vc环境下的利用IJL压缩库进行BMP->JPG的压缩转化
  3. 所属分类:压缩解压

    • 发布日期:2008-10-13
    • 文件大小:257954
    • 提供者:某某人
  1. suanshu

    0下载:
  2. 首先,计算出码元符号集中各个码元的累积概率,并存放在F数组里面。 然后,开始循环编码,直至输入序列循环完毕。 最后,将所得的累计概率由小数形式转化成二进制形式。 对解码。首先,计算码元符号集中各个码元的累积概率,并存放在F数组里面。 然后,开始循环解码,此次循环是在码元符号集中,由高概率码元向低概率码元循环,这是由于编码的输出肯定是不大于高概率码元的累积概率的。那么如果我们从高到底循环,所找到的第一个小于编码结果fs的码元即为所译码的码元。 最后,我们可以利用此码
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-06
    • 文件大小:1207
    • 提供者:张继红
  1. WindowsFormsApplication1

    0下载:
  2. 将黑色转化成白色,谢谢各位使用,祝你性情愉快-Will be transformed into black and white, thank you to use
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-28
    • 文件大小:38534
    • 提供者:魏玲
  1. xingchengbianma

    0下载:
  2. 将一幅图像转化为二值图像,然后对二值图像进行行程编码。-Will be an image into a binary image, and then carried out on the binary image encoding trip.
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-16
    • 文件大小:45673
    • 提供者:任彦博
  1. huffman

    0下载:
  2. 基于哈夫曼技术压缩和解压。 计算机中任意文件的读与存都是从缓存里面读取 0 、 1 代码转化成, 即文件其是就是二进制的。所以可以把每8位转换成相应的ASCII码。从而用哈夫曼编码, 将等长编码转化成非等长编码。-Huffman-based compression and decompression technology. Arbitrary files on your computer and keep reading it to read from the cache 0, 1 code
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-01
    • 文件大小:9891
    • 提供者:梁超
  1. huffcode

    0下载:
  2. 哈夫曼编码,能后对一个文本,首先剔除非英文字母字符,然后将小写统一转化为大写,再对其进行哈夫曼编码,并输出编码表及带全路径长度-Huffman coding, to a text after the first non-English alphabetic characters removed, and then converted to lowercase unified capital, and then their Huffman encoding, and output coding t
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-03-29
    • 文件大小:6662
    • 提供者:zgk
  1. g711test

    0下载:
  2. g711是一个不错的有损压缩,解压,以及格式转化的算法,尤其是对音频数据-g711 is a good lossy compression, decompression, as well as format conversion algorithm, especially for audio data
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-03
    • 文件大小:210275
    • 提供者:chang
  1. colorchange

    0下载:
  2. 将彩色图像转化为黑白图像,下载后直接运行就行!-The color image into black and white images, download and directly run on the line!
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-05-16
    • 文件大小:4341215
    • 提供者:yuanyelang
  1. ASKtoOOK

    0下载:
  2. 在systemview软件上实现由ASK调制到OOK调制的转化,详细地实验原理图,正确的实验运行结果-The systemview software from the ASK modulation to achieve the conversion of OOK modulation, a detailed experimental schematic diagram, the correct experimental running results
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-05
    • 文件大小:766
    • 提供者:晨曦
  1. Iee745

    0下载:
  2. 浮点数十进制与十六进制转化,高低字节可配置-Decimal and hexadecimal floating point conversion, high and low bytes can be configured
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-02
    • 文件大小:39303
    • 提供者:zhxiaoxi
  1. Huffman

    0下载:
  2. 1.基本上已经完成压缩及解压缩操作的代码实现。 解压缩时关键还是文件流的操作,读取内容时采用逐字节读取,把0-255的十进制整数转化为二进制数,利用这些二进制数从哈夫曼树的根结点出发,0走左子,1走右子,找到叶子结点,把该叶子结点的下标写入新文件,最后处理有效位数不满8位的字节-1 basically completed the compression and decompression code implementation. Decompression is the key stre
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-14
    • 文件大小:3432
    • 提供者:chenchen
  1. c1

    0下载:
  2. 从键盘接收一个字符,如果是小写字符,则转化为相应的大写字符;如果是大写字符,则转化为相应的小写字符;如果是其他字符,则不做转换-Receives a character the keyboard, if it is lowercase characters, converted to the corresponding uppercase characters if uppercase characters are converted to the corresponding lowerca
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-05-04
    • 文件大小:8397
    • 提供者:刁书成
  1. AdaptiveHuffman

    0下载:
  2. 动态哈夫曼压缩算法 压缩速度更快 没有转化为二进制 仅供参考-Adaptive Huffman
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-12
    • 文件大小:1248
    • 提供者:lzb
  1. fileandbase64

    0下载:
  2. 文件转化成字母的代码,用的是base64算法。-conv file to words code.i use base64.
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-05-04
    • 文件大小:62341
    • 提供者:whc
搜珍网 www.dssz.com