资源简介
中科院期末王伟强数字图像处理大作页,用MATLAB实现了冈萨雷斯书中的大部分程序,带有可视化的界面,可以调节参数,实现的功能简要概括如下:灰度变换与图像锐化,滤波(低通,高通,中值,维纳滤波),噪声模型,运动模糊,小波变换等等。本文件代码有详细的注释,并附有程序说明文档指导运行。本次作业获得了满分5分,个人感觉对于理解图像处理的知识点还是很有帮助的。
代码片段和文件信息
function [U V] = dftuv(M N)
%DFTUV Computes meshgrid frequency matrices.
% [U V] = DFTUV(M N) computes meshgrid frequency matrices U and
% V. U and V are useful for computing frequency-domain filter
% functions that can be used with DFTFILT. U and V are both
% M-by-N.
% Copyright 2002-2004 R. C. Gonzalez R. E. Woods & S. L. Eddins
% Digital Image Processing Using MATLAB Prentice-Hall 2004
% $Revision: 1.3 $ $Date: 2003/04/16 22:30:34 $
% Set up range of variables.
u = 0:(M - 1);
v = 0:(N - 1);
% Compute the indices for use in meshgrid.
idx = find(u > M/2);
u(idx) = u(idx) - M;
idy = find(v > N/2);
v(idy) = v(idy) - N;
% Compute the meshgrid arrays.
[V U] = meshgrid(v u);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-12-22 21:39 code\
文件 736 2010-02-03 20:28 code\dftuv.m
文件 1264 2010-02-03 20:28 code\hpfilter.m
文件 1473 2010-02-03 20:28 code\lpfilter.m
文件 13368 2016-12-22 19:45 code\test.fig
文件 20382 2016-12-22 19:45 code\test.m
文件 4778 2010-02-03 20:28 code\wave2gray.m
文件 4627 2010-02-03 20:28 code\waveback.m
文件 940 2010-02-03 20:28 code\wavecopy.m
文件 1089 2010-02-03 20:29 code\wavecut.m
文件 4235 2010-02-03 20:29 code\wavefast.m
文件 4889 2010-02-03 20:29 code\wavefilter.m
文件 1061 2010-02-03 20:29 code\wavepaste.m
文件 3528 2010-02-03 20:29 code\wavework.m
文件 696 2010-02-03 20:29 code\wavezero.m
目录 0 2016-12-22 21:46 picture\
文件 250398 2003-06-28 23:03 picture\a.tif
文件 262558 2003-06-28 23:03 picture\cube.tif
文件 360678 2003-06-28 23:03 picture\house.tif
文件 33250 2016-03-26 20:35 picture\littleboy.jpg
文件 1318981 2017-04-15 17:01 readme.docx
- 上一篇:小车倒立摆系统的控制及GUI动画演示
- 下一篇:Noisex-92完整版.zip
相关资源
- 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实现混沌系统的控制
评论
共有 条评论