资源简介
图像匹配matlab程序设计:1. 概念解释,2.数字图像匹配算法设计:⑴基于灰度的归一化匹配算法⑵基于灰度的快速模板匹配算法。三.相应matlab程序设计:1.数字图像匹配相关函数 2.数字图像匹配函数:(1) 基于灰度的归一化匹配算法(2) 基于灰度的快速模板匹配算法
实验:1. 基于灰度的归一化匹配算法2. 基于灰度的快速模板匹配算法五.试验结果评价
基于灰度的归一化匹配算法
基于灰度的快速模板匹配算

代码片段和文件信息
%coded by anishfrancisECE dept. AmalJyothi College of
%engineering(www.amaljyothi.com)INDIA
%the program is a test program for patternmatching studiessuidted for
%applications involving small image recongnition.mathchind done pixel based
%on binary images.
function varargout = push(varargin)
% push M-source for push.fig
% push by itself creates a new push or raises the existing
% singleton*.
%
% H = push returns the handle to a new push or the handle to
% the existing singleton*.
%
% push(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in push.M with the given input arguments.
%
% push(‘Property‘‘Value‘...) creates a new push or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before push_OpeningFunction gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to push_OpeningFcn via varargin.
%
% *See GUI Options on GUIDE‘s Tools menu. Choose “GUI allows only one
% instance to run (singleton)“.
%
% See also: GUIDE GUIDATA GUIHANDLES
% Copyright 2002-2003 The MathWorks Inc.
% Edit the above text to modify the response to help push
% Last Modified by GUIDE v2.5 21-Nov-2008 11:43:53
% Begin initialization code - DO NOT TARGET
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @push_OpeningFcn ...
‘gui_OutputFcn‘ @push_OutputFcn ...
‘gui_LayoutFcn‘ [] ...
‘gui_Callback‘ []);
if nargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
if nargout
[varargout{1:nargout}] = gui_mainfcn(gui_State varargin{:});
else
gui_mainfcn(gui_State varargin{:});
end
% End initialization code - DO NOT TARGET
% --- Executes just before push is made visible.
function push_OpeningFcn(hobject eventdata handles varargin)
% This function has no output args see OutputFcn.
% hobject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% varargin command line arguments to push (see VARARGIN)
% Choose default command line output for push
handles.pic=‘test1.jpg‘;
handles.output = hobject;
handles.pic=‘test1.jpg‘;
% Update handles structure
guidata(hobject handles);
% UIWAIT makes push wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = push_OutputFcn(hobject eventdata handles)
% varargout cell array for returning output args (see VARARGOUT);
% hobject handle to figure
% eventdata reserved - to be defined in a
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2337 2008-11-22 08:21 图像匹配\match\push.fig
文件 13957 2008-11-24 22:36 图像匹配\match\push.m
文件 3597 2007-09-18 09:15 图像匹配\数字图像匹配\getOrder.m
文件 1182 2007-09-18 18:05 图像匹配\数字图像匹配\gettezheng.m
文件 4588 2008-12-27 19:43 图像匹配\数字图像匹配\picture\k001.JPG
文件 4617 2008-12-27 19:44 图像匹配\数字图像匹配\picture\k002.JPG
文件 4588 2008-12-27 19:43 图像匹配\数字图像匹配\picture\k003.JPG
文件 4569 2008-12-28 13:23 图像匹配\数字图像匹配\picture\k004.JPG
文件 4588 2008-12-27 19:43 图像匹配\数字图像匹配\picture\k005.JPG
文件 4624 2008-12-27 19:44 图像匹配\数字图像匹配\picture\k006.JPG
文件 4588 2008-12-27 19:43 图像匹配\数字图像匹配\picture\k007.JPG
文件 4617 2008-12-27 19:44 图像匹配\数字图像匹配\picture\k008.JPG
文件 1148 2008-12-27 19:46 图像匹配\数字图像匹配\picture\pipeitu.jpg
..A.SH. 24576 2009-01-22 12:52 图像匹配\数字图像匹配\picture\Thumbs.db
文件 8364 2007-09-18 10:03 图像匹配\数字图像匹配\Picture.bmp
文件 3384 2007-09-18 10:08 图像匹配\数字图像匹配\pipeitu.bmp
文件 779 2008-12-27 21:11 图像匹配\数字图像匹配\testpipei_1.m
文件 1333 2009-01-22 14:50 图像匹配\数字图像匹配\testpipei_2.m
..A.SH. 13312 2009-01-22 15:56 图像匹配\数字图像匹配\Thumbs.db
文件 26624 2008-12-29 22:16 图像匹配\数字图像匹配\代码附录\附件三 getOrder.m.doc
文件 21504 2008-12-29 22:17 图像匹配\数字图像匹配\代码附录\附件四 gettezheng.m.doc
文件 23040 2008-12-29 22:14 图像匹配\数字图像匹配\代码附录\附录一 testpipei_1.m.doc
文件 25088 2008-12-29 22:15 图像匹配\数字图像匹配\代码附录\附录二 testpipei_2.m.doc
文件 134 2008-12-30 09:19 图像匹配\数字图像匹配\注意.txt
文件 658432 2009-01-22 13:04 图像匹配\数字图像匹配\计算方法课程设计报告.doc
文件 3384 2007-09-18 10:08 图像匹配\数字图像匹配1\afterCut.jpg
文件 3723 2007-09-17 10:38 图像匹配\数字图像匹配1\getOrder.asv
文件 3597 2007-09-18 09:15 图像匹配\数字图像匹配1\getOrder.m
文件 1122 2007-09-17 22:19 图像匹配\数字图像匹配1\gettezheng.asv
文件 1182 2007-09-18 18:05 图像匹配\数字图像匹配1\gettezheng.m
............此处省略19个文件信息
- 上一篇:APF有源电力滤波器
- 下一篇:混合蛙跳算法SFLA的matlab实现
相关资源
- 串行级联cpm系统MATLAB仿真
- matlab_OFDM调制解调(来自剑桥大学)
- Matlab路面裂缝识别69319
- 高灵敏度GPS接收机MATLAB仿真,附捕获
- 基于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实现的多站定位系统性能仿真
评论
共有 条评论