-
大小: 6KB文件类型: .rar金币: 1下载: 0 次发布日期: 2021-02-02
- 语言: Matlab
- 标签: hunhegaosiji 背景建模 检测 高斯
资源简介
在MATLAB环境下,用混合高斯背景建模的方法实现对视频中运动目标的检测
代码片段和文件信息
% 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‘);
source = aviread(‘C:\Documents and Settings\Administrator\桌面\分割\1.avi‘);
% ----------------------- frame size variables -----------------------
fr = source(1).cdata; % 读取第一帧作为背景
fr_bw = rgb2gray(fr); % 将背景转换为灰度图像
fr_size = size(fr); %取帧大小
width = fr_size(2);
height = fr_size(1);
fg = zeros(height width);
bg_bw = zeros(height width);
% --------------------- mog variables -----------------------------------
C = 3;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5699 2010-01-21 16:11 mixture_of_gaussians.m
文件 26112 2010-01-21 16:10 matlab问题文档.doc
----------- --------- ---------- ----- ----
31811 2
相关资源
- gbvs 二维图像视觉显著性检测
- wenli 分析了纹理特征提取方法
- susancorners
- fusion_change_detection SAR图像变化检测代
- MotionDetection 静止背景下运动目标检测
- edge_detection 利用小波边缘检测算法实
- Matlab-ECG-Processing 非常实用的基于Mat
- hough-Matlab 利用Matlab编写的基于hough变
- VideoFaceDetect 使用matlab调用opencv做成的
- automsft 该程序初始时使用背景差分法
- recognize_face 利用灰度积分投影直接对
- SSDA SSDA序贯相似性检测方法对图像进
- SIGNAL_edge_dwt 利用小波变换模极大值方
- RANSAC-match 可以在harris角点检测和ncc粗
- Zernike 亚像素边缘检测的matlab代码
- canny 自己实现的canny边缘检测算子
- tuxiangfenge Matlab边缘检测和区域生长图
- PSS_detect
- jiyuneirongdetuxiangjiansuo 基于内容的图像
- 2 完成车辆计数功能
- Yale_5G Yale
- Cooperative-spectrum-sensing
- MutiTargetDetection 多目标检测与跟踪算法
- shadow-removal 该代码用于在视觉智能监
- ColorHistogram 图像检索——提取颜色特
- CNN_Edge_extraction CNN图像边缘检测
- surface-quality-detection 用matlab实现的表面
- corner 角点检测的程序
- matlab 本文重点研究了面积法对车流量
- HOGadaboos 应用HOG和adbost进行人体检测试
评论
共有 条评论