资源简介
这个是我自己在我64位window上编译生成的matlab的jpegtbx_1.4(jpeg tool box)。原始版本只有32位的,这里贡献给大家。我的matlab2013 VS2010
代码片段和文件信息
% BDCT Blocked discrete cosine transform
%
% B = BDCT(A) computes DCT2 transform of A in 8x8 blocks. B is
% the same size as A and contains the cosine transform coefficients for
% each block. This transform can be inverted using IBDCT.
%
% B = BDCT(AN) computes DCT2 transform of A in blocks of size NxN.
% Phil Sallee 9/03
function b = bdct(an)
if (nargin < 2)
n = 8;
end
% generate the matrix for the full 2D DCT transform (both directions)
dctm = bdctmtx(n);
% reshape image into blocks multiply and reshape back
[vrc] = im2vec(an);
b = vec2im(dctm*v0nrc);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 75 2013-06-30 11:07 说明.txt
文件 614 2013-02-28 21:25 jpegtbx_1.4\bdct.m
文件 506 2013-02-28 21:25 jpegtbx_1.4\bdctmtx.m
文件 563 2013-02-28 21:25 jpegtbx_1.4\dequantize.m
文件 638 2013-02-28 21:25 jpegtbx_1.4\ibdct.m
文件 1552 2013-02-28 21:25 jpegtbx_1.4\im2vec.m
文件 1315292 2013-06-30 10:08 jpegtbx_1.4\jpeg.lib
文件 80 2013-02-28 21:25 jpegtbx_1.4\jpegConvert.asv
文件 96 2013-02-28 21:25 jpegtbx_1.4\jpegConvert.m
文件 510360 2013-02-28 21:25 jpegtbx_1.4\JPEGOBJ.mat
文件 2462 2013-02-28 21:25 jpegtbx_1.4\jpeg_qtable.m
文件 14232 2013-02-28 21:25 jpegtbx_1.4\jpeg_read.asv
文件 14232 2013-02-28 21:25 jpegtbx_1.4\jpeg_read.c
文件 65536 2013-02-28 21:25 jpegtbx_1.4\jpeg_read.dll
文件 474 2013-02-28 21:25 jpegtbx_1.4\jpeg_read.m
文件 66560 2013-06-30 10:08 jpegtbx_1.4\jpeg_read.mexw64
文件 12714 2013-02-28 21:25 jpegtbx_1.4\jpeg_write.c
文件 57344 2013-02-28 21:25 jpegtbx_1.4\jpeg_write.dll
文件 430 2013-02-28 21:25 jpegtbx_1.4\jpeg_write.m
文件 66048 2013-06-30 10:09 jpegtbx_1.4\jpeg_write.mexw64
文件 521 2013-02-28 21:25 jpegtbx_1.4\quantize.m
文件 12787 2013-02-28 21:25 jpegtbx_1.4\README
文件 5770 2013-02-28 21:25 jpegtbx_1.4\testorig.jpg
文件 1569 2013-02-28 21:25 jpegtbx_1.4\vec2im.m
目录 0 2013-06-30 11:04 jpegtbx_1.4
----------- --------- ---------- ----- ----
2150455 25
- 上一篇:音频数字水印
- 下一篇:基于LSB的图像水印算法
相关资源
- Pattern Recognition and Machine Learning(高清
- MATLAB 编程 第二版 Stephen J. Chapman 著
- 均值滤波和FFT频谱分析Matlab代码
- 《MATLAB扩展编程》代码
- HDB3码、AMI码的MATLAB实现
- 3点GPS定位MATLAB仿真
- MATLAB数字信号处理85个实用案例精讲入
- matlab从入门到精通pdf94795
- 欧拉放大论文及matlab代码
- 跳一跳辅助_matlab版本
- 全面详解LTE MATLAB建模、仿真与实现
- MIMO-OFDM无线通信技术及MATLAB实现_孙锴
- MATLAB Programming for Engineers 4th - Chapman
- matlab 各种谱分析对比
- 分数阶chen混沌matlab程序
- 基于粒子群算法的非合作博弈的matl
- MATLAB车流仿真 包括跟驰、延误
- matlab空间桁架计算程序
- 基于MATLAB的图像特征点匹配和筛选
- DMA-TVP-FAVAR
- GPS信号的码捕获matlab代码.7z
- 一维光子晶体MATLAB仿真代码吸收率折
- newmark法源程序
- 传统关联成像、计算鬼成像matlab
- pri传统分选算法
- 摆动滚子推杆盘形凸轮设计
- 医学图像重建作业matlab源码
- Matlab实现混沌系统的控制
- 检测疲劳驾驶
- Matlab锁相环仿真-Phase Locked Loop.rar
评论
共有 条评论