资源简介
使用matlab编写的运动目标跟踪算法,核心代码均自己手写,包括帧间差分法,ViBe算法和高斯混合建模法,并且使用了matlab GUI,可直接选择视频查看算法效果。
代码片段和文件信息
function varargout = object_detect(varargin)
% object_DETECT MATLAB code for object_detect.fig
% object_DETECT by itself creates a new object_DETECT or raises the existing
% singleton*.
%
% H = object_DETECT returns the handle to a new object_DETECT or the handle to
% the existing singleton*.
%
% object_DETECT(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in object_DETECT.M with the given input arguments.
%
% object_DETECT(‘Property‘‘Value‘...) creates a new object_DETECT or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before object_detect_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to object_detect_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
% Edit the above text to modify the response to help object_detect
% Last Modified by GUIDE v2.5 16-May-2018 08:41:00
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @object_detect_OpeningFcn ...
‘gui_OutputFcn‘ @object_detect_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 EDIT
% --- Executes just before object_detect is made visible.
function object_detect_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 object_detect (see VARARGIN)
% Choose default command line output for object_detect
handles.output = hobject;
% Update handles structure
guidata(hobject handles);
% UIWAIT makes object_detect wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = object_detect_OutputFcn(hobject eventdata handles)
% varargout cell array for returning output args (see VARARGOUT);
% hobject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Get default command line output from handles structure
varargout{1} = handles.output;
% --- Executes on button press in pushbutton1.
function pushbutton1_Callback(hobject e
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 6314068 2015-09-28 11:41 运动目标检测\atrium.mp4
文件 1049784 2016-06-03 16:40 运动目标检测\car.avi
文件 37452 2018-05-17 16:31 运动目标检测\ob
文件 19416 2018-06-11 11:30 运动目标检测\ob
文件 8484864 2018-02-26 23:08 运动目标检测\people.avi
目录 0 2018-08-08 21:14 运动目标检测\
相关资源
- MATLAB计算机视觉与深度学习实战 完整
- 《数字图像处理-刚萨雷斯》图片素材
- Pearson-Digital Image Processing, 4th.Editio
- 回归学习算法
- matlab实现运动目标检测与最小外接矩
- 计算机视觉、图像处理、硬币识别
- matlab开发-RungeKuttaNystrom
- MATLAB运动目标检测代码
- 用matlab读取视频文件中的图像,并对
- 区域增长(Region Growing)算法Matlab代码
- 基于MATLAB的vibe算法的运动目标检测代
- 运动目标检测的背景建模
- 四元数法计算两个物体之间的相对位
- Fusiello极线校正 - 论文和Matlab程序
- 基于matlab的车辆分类(更改图片集的
- 基于MATLAB运动目标检测追踪
- 运动目标检测光流法
- 基于帧差法的运动目标检测的matlab代
- 视频运动目标检测与跟踪 matlab代码
- 运动目标检测的matlab代码
- 运动目标检测与跟踪算法 Matlab
- MATLAB联合双边滤波代码.zip
- 改进的VIBE运动目标检测算法
- 改进的混合高斯背景模型
- MotionDetection 静止背景下运动目标检测
- GMM 本代码建立高斯混合模型(高斯多
- Moving-target-detection 运动目标检测的一
- GMM 建立了混合高斯模型
- 运动目标检测及图像分割matlab代码(
- 运动目标检测跟踪matlab
评论
共有 条评论