• 大小: 14.8MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-06-20
  • 语言: Matlab
  • 标签:

资源简介

使用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  运动目标检测\object_detect.fig
     文件       19416  2018-06-11 11:30  运动目标检测\object_detect.m
     文件     8484864  2018-02-26 23:08  运动目标检测\people.avi
     目录           0  2018-08-08 21:14  运动目标检测\

评论

共有 条评论