登录
首页 » matlab » Image-compression-algorithm

Image-compression-algorithm

于 2011-06-21 发布 文件大小:60KB
0 237
下载积分: 1 下载次数: 29

代码说明:

  一系列展示图像压缩技术的源代码。包括有:使用块截断编码的图像压缩(Block Truncation)、基于高斯金字塔变换的图像压缩(Gaussian Pyramids)、基于离散余弦变换对图像压缩(Discrete Cosine Transform)、基于奇异值分解(SVD)的图像压缩(Singular Value Decomposition)。给出的代码还可以用于2D图像噪声消除。(Series show the source code for image compression technology. Include: use of block truncation coding for image compression (Block Truncation), Gaussian pyramid transform based image compression (Gaussian Pyramids), based on the discrete cosine transform image compression (Discrete Cosine Transform), based on singular value decomposition (SVD) image compression (Singular Value Decomposition). The code given 2D image can also be used for noise cancellation.)

文件列表:

图像压缩算法演示源代码
......................\compression
......................\...........\btcode.m,13007,2004-04-10
......................\...........\conv2fft.m,6943,2004-01-08
......................\...........\convfft.m,1623,2004-01-08
......................\...........\dctcompr.m,7666,2004-04-15
......................\...........\imcompr.m,4354,2004-04-09
......................\...........\pyramid.m,7747,2004-04-10
......................\...........\testo.txt,1421,2004-04-16
......................\compression.zip,9753,2008-03-02
......................\loadFile.do.htm,47945,2008-03-02
......................\loadFile.do_files
......................\.................\00th.png
......................\.................\30th.png
......................\.................\60th.png
......................\.................\90th.png
......................\.................\blue_band_536x5.gif
......................\.................\bullet.gif,57,2008-03-02
......................\.................\Captcha.htm,6646,2008-03-02
......................\.................\cmnty1.css,10462,2008-03-02
......................\.................\doc.gif,70,2008-03-02
......................\.................\dots_rnav.gif,97,2008-03-02
......................\.................\dots_rnav_top.gif,152,2008-03-02
......................\.................\exclamation.gif,64,2008-03-02
......................\.................\fullstar.gif,145,2008-03-02
......................\.................\fullstar_grey.gif,145,2008-03-02
......................\.................\halfstar.gif,140,2008-03-02
......................\.................\ltblue_top_nav_trans.gif,117,2008-03-02
......................\.................\mail_brdr.gif,155,2008-03-02
......................\.................\mlc_logo.gif,2569,2008-03-02
......................\.................\question.gif,64,2008-03-02
......................\.................\s4838809672192.gif,43,2008-03-02
......................\.................\site3.css,3296,2008-03-02
......................\.................\spacer.gif,43,2008-03-02
......................\.................\submitfile.gif,66,2008-03-02
......................\.................\s_code.js,39111,2008-03-02
......................\.................\xmlicon_30x12.gif,260,2008-03-02
......................\说明.doc,19968,2011-04-21

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • CS
    说明:  压缩感知理论及其新的进展,压缩感知理论入门资料(Compressed sensing theory and its new progress, introductory information on compressed sensing theory)
    2010-06-23 13:56:22下载
    积分:1
  • 7zipDll
    完善后的LZMA(7ZIP)压缩DLL文件,且带有示范使用源码。(Perfect after LZMA (7ZIP) compressed DLL files, and a demonstration on the use of source code.)
    2007-09-24 12:25:04下载
    积分:1
  • 哈夫曼树
    利用哈夫曼树对简单文件进行压缩和解压缩,对数据的压缩集成(Compression and Decompression of Simple Files Using Huffman Tree)
    2019-05-25 09:42:38下载
    积分:1
  • shunxubiao
    顺序表插入删除,典型的教科书式的程序。老师给的。。。。。。(The order of the table insert removed, a typical textbook-style programs.)
    2010-01-10 11:23:19下载
    积分:1
  • EZW
    EZW算法的matlab代码,希望对大家有用(EZW algorithm matlab code, everyone would like to be useful)
    2021-04-07 16:39:01下载
    积分:1
  • apStatsGraphs
    数据分析控件,在页面里面数据分析统计查看时,很好的工具(Data analysis control)
    2010-03-03 15:50:29下载
    积分:1
  • 200430481
    赫夫曼编译码器: 用哈夫曼编码进行通信可以大大提高信道利用率,缩短信息传输时间,降低传输成本。但是,这要求在发送端通过一个编码系统对待传数据预先编码,在接收端将传来的数据进行译码(复原)。对于双工信道(即可以双向传输信息的信道),每端都需要一个完整的编/译码系统。试为这样的信息收发站写一个哈夫曼码的编/译码系统。 [基本要求]一个完整的系统应具有以下功能: (1)I:初始化(Initialization)。从终端读入字符集大小n,以及n个字符和n个权值,建立哈夫曼树,并将它存于文件hfmTree中。 (2)E:编码(Encoding)。利用已建好的哈夫曼树(如不在内存,则从文件hfmTree中读入),对文件ToBeTran中的正文进行编码,然后将结果存入文件CodeFile中。 (3)D:译码(Decoding)。利用已建好的哈夫曼树将文件CodeFile中的代码进行译码,结果存入文件TextFile中。 (4)P:印代码文件(Print)。将文件CodeFile以紧凑格式显示在终端上,每行50个代码。同时将此字符形式的编码文件写入文件CodePrin中。 (5)T:印哈夫曼树(Tree printing)。将已在内存中的哈夫曼树以直观的方式(树或凹入表形式)显示出,同时将此字符形式的哈夫曼树写入文件TreePrint中。()
    2021-03-06 09:19:30下载
    积分:1
  • mentkal.1
    计算多重积分是蒙特卡罗方法的重要应用领域之一。本章着重介绍计算定积分的蒙特卡罗方法的各种基本技巧,而这些技巧在粒子输运问题中也是适用的(Calculation of multiple points is an important application of the Monte Carlo method, one of the areas. This chapter focuses on calculation of definite integral of the Monte Carlo method, a variety of basic skills, and these skills in particle transport problems are also applicable to)
    2020-12-04 13:09:24下载
    积分:1
  • huffman
    Huffman编码,使用哈弗曼树生成前缀码,把输入的字符编码并把原字符解码(Huffman code and decode)
    2014-03-06 10:10:34下载
    积分:1
  • New-folder
    this is a matlav file to clean the data.
    2013-06-24 23:35:47下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载