资源简介
多图像超分辨率的实现主要就是将具有相似而又不同却又互相补充信息的配准影像融到一起,得到非均匀采样的较高分辨率数据,复原需要亚像素精度的运动矢量场,然而它们之间的运动模型估计精确与否直接影响到重建的效果,因此影像配准和运动模型的估计精度是高分辨率图像重建的关键。由于实际中不同时刻获得的影像数据间存在较大的变形、缩放、旋转和平移,因此必须对其进行配准,在此基础上进行运动模型估计。然后通过频率域或空间域的重建处理,生成均匀采样的超分辨率数据
代码片段和文件信息
function [Z X Y] = applicability(a b rmax)
% APPLICABILITY - generate an applicability function used in normalized convolution
% Z is the applicability matrix and X Y are the grid coordinates if a 3D
% plot is required.
%% -----------------------------------------------------------------------
% SUPERRESOLUTION - Graphical User Interface for Super-Resolution Imaging
% Copyright (C) 2005-2007 Laboratory of Audiovisual Communications (LCAV)
% Ecole Polytechnique Federale de Lausanne (EPFL)
% CH-1015 Lausanne Switzerland
%
% This program is free software; you can redistribute it and/or modify it
% under the terms of the GNU General Public License as published by the
% Free Software Foundation; either version 2 of the License or (at your
% option) any later version. This software is distributed in the hope that
% it will be useful but without any warranty; without even the implied
% warranty of merchantability or fitness for a particular purpose.
% See the GNU General Public License for more details
% (enclosed in the file GPL).
%
% Latest modifications: January 12 2006 by Patrick Vandewalle
% November 6 2006 by Karim Krichane
[X Y] = meshgrid(-rmax:rmax -rmax:rmax);
Z = sqrt(X.^2+Y.^2).^(-a).*cos((pi*sqrt(X.^2+Y.^2))/(2*rmax)).^b;
Z = Z .* double(sqrt(X.^2+Y.^2) < rmax); % We want Z=0 outside of rmax
Z(rmax+1 rmax+1) = 1;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 6148 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\.DS_Store
文件 15364 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\.DS_Store
文件 82 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\._html
文件 1417 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\applicability.m
文件 1920 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\c2p.m
文件 4943 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\Contents.m
文件 2702 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\create_images.m
文件 1668 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\estimate_motion.m
文件 3452 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\estimate_rotation.m
文件 2474 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\estimate_shift.m
文件 1638 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\generatePSF.m
文件 4588 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\generation.fig
文件 18562 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\generation.m
文件 15146 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\gpl
文件 1654 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\g_im_LR_1.tif
文件 1652 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\g_im_LR_2.tif
文件 1652 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\g_im_LR_3.tif
文件 1650 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\g_im_LR_4.tif
文件 6148 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\html\.DS_Store
文件 3913 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\html\SR_about.html
文件 26418 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\html\SR_documentation.html
文件 3140 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\interpolation.m
文件 3772 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\iteratedbackprojection.m
文件 4046 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\keren.m
文件 2753 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\keren_shift.m
文件 43108 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\logo_epfl_small.tif
文件 150096 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\logo_warning.tif
文件 1748 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\lowpass.m
文件 5179 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\lucchese.m
文件 3092 2010-11-30 22:03 superresolution_v_2.0\superresolution_v_2.0\application\marcel.m
............此处省略32个文件信息
- 上一篇:Matlab实现的一个简单的RADAR预警雷达模拟
- 下一篇:MATLAB 地震程序
相关资源
- 阵列天线的matlab仿真
- MATLAB 经典程序源代码大全
- MATLAB小波软阈值去噪代码33473
- 天线阵的波束形成在MATLAB仿真程序及
- 非线性SVM算法-matlab实现
- 《MATLAB 智能算法超级学习手册》-程序
- 组合导航matlab程序
- 读取txt文件内容matlab代码实现
- Matlab实现基于相关的模板匹配程序
- matlab优化工具箱讲解
- 基于MATLAB的快速傅里叶变换
- 光纤传输中的分布傅立叶算法matlab实
- 基于matlab的图像处理源程序
- matlab 椭圆拟合程序
- 算术编码解码matlab源代码
- optical_flow 光流法 matlab 实现程序
- 引导图像滤波器 Matlab实现
- 分形几何中一些经典图形的Matlab画法
- OFDM系统MATLAB仿真代码
- SVM工具箱(matlab中运行)
- 图像小波变换MatLab源代码
- LU分解的MATLAB实现
- 冈萨雷斯数字图像处理matlab版(第三
- 替代数据法的matlab程序
- 用matlab实现的多站定位系统性能仿真
- 通过不同方法进行粗糙集属性约简m
- k近邻算法matlab实现
- matlab识别系统
- 神经网络分类matlab程序
- matlab正弦信号发生器的设计
评论
共有 条评论