资源简介
图像匹配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实现
相关资源
- 混合蛙跳算法SFLA的matlab实现
- 天牛须智能算法(BAS)加模糊神经网
- MATLAB 费诺编码
- MatlabR2011b破解文件
- 基于Matlab2018b的SimMechanics工具箱建立的
- 粒子群算法matlab代码及使用
- 51622422POWER_SSSC_Ending.zip
- 直接序列扩频通信系统Matlab代码仿真
- 循环码matlab代码
- Matlab在结构动力学中的应用
- 基于灰度投影的图像配准MATLAB
- Matlab三维点云法向量与特征值的简易
- 海浪模型MATLAB仿真代码
- 基于神经网络的自整定PID程序MATLAB
- PMX算法MATLAB实现
- 矩阵的QR分解基于施密特正交化
- 红外图像的处理及其MATLAB实现.zip
- 基于MATLAB的人脸识别源代码
- MATLAB最小错误率贝叶斯决策
- 水平集方法的matlab源代码
- 伪距差分定位MATLAB
- sigm激活函数
- 头部CTmatlab三维重建源代码.rar
- matlab中Copula理论及应用
- 矢量控制Matlab仿真图
- KPCA的MATLAB程序1
- 基于matlab的图像篡改检测2
- Matlab实现QR二维码的生成与识别
- lbp MATLAB代码
- 雅克比迭代+高斯迭代+SOR迭代法Matla
评论
共有 条评论