文件名称:DCT_IDCT
- 所属分类:
- 图形图像处理(光照,映射..)
- 资源属性:
- [Matlab] [源码]
- 上传时间:
- 2008-10-13
- 文件大小:
- 1.15kb
- 下载次数:
- 0次
- 提 供 者:
- hu***
- 相关连接:
- 无
- 下载说明:
- 别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容均来自于网络,请自行研究使用
to understand the Algorithm go to matlab help in page dct2 and idct2 to get the mathematical expression
for M = N = 8, we can calculate the most of hard values and save it as LUTs to speed up the execution
now compare our special 8X8 functions with the internal general functions
use this code:
A = int32(100*rand(8,8))
tic for i = 1 : 1000 IDCT_8X8(DCT_8X8(A)) end toc
tic for i = 1 : 1000 idct2(dct2(A)) end toc
i had built the general functions too, but with low speed
for M = N = 8, we can calculate the most of hard values and save it as LUTs to speed up the execution
now compare our special 8X8 functions with the internal general functions
use this code:
A = int32(100*rand(8,8))
tic for i = 1 : 1000 IDCT_8X8(DCT_8X8(A)) end toc
tic for i = 1 : 1000 idct2(dct2(A)) end toc
i had built the general functions too, but with low speed
(系统自动生成,下载前可以参看下载内容)
下载文件列表
压缩包 : 85375551dct_idct.zip 列表 DCT_8X8.m IDCT_8X8.m