资源简介

改进的混合高斯背景模型,用于检测运动目标,能够有效的提取前景

资源截图

代码片段和文件信息

% This m-file implements the mixture of Gaussians algorithm for background
% subtraction.  It may be used free of charge for any purpose (commercial
% or otherwise) as long as the author (Seth Benton) is acknowledged.


clear all

% source = aviread(‘C:\Video\Source\traffic\san_fran_traffic_30sec_QVGA‘);
obj = VideoReader(‘毕设8.avi‘);

% -----------------------  frame size variables -----------------------

fr = read(obj1);           % read in 1st frame as background frame把第一帧作为背景帧
fr_bw = rgb2gray(fr);     % convert background to greyscale把背景转为灰度图
fr_size = size(fr);          %背景帧的大小   
width = obj.Width;           %背景帧的宽度
height = obj.Height;          %背景帧的高度
fg = zeros(height width);     %定义一个与背景帧灰度图像同等大小的矩阵,用于计算前景,储存前景像素
bg_bw = zeros(height width);   %定义一个与背景帧灰度图像

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       7738  2016-04-14 12:16  sy5.m

----------- ---------  ---------- -----  ----

                 7738                    1


评论

共有 条评论