基于视频的异常行为检测

研究基于视频的异常行为检测

导航

02 2009 档案

转帖:如何替换系统自带的记事本(notepad.exe)
摘要:系统自带的记事本notepad.exe软件的缺点不言而喻,我们可能想使用notepad2.exe等功能更强的程序来代替系统自带的记事本(notepad.exe),但是仅将原notepad.exe用notepad2.exe替换后,系统会自动还原成以前的文件。那怎样才能强制替换掉它呢? 在WinXP/2003下:首先备份好原版的Notepad.exe步骤1:替换掉 c:\Windows\system3... 阅读全文

posted @ 2009-02-24 20:18 zengqs 阅读(866) 评论(0) 推荐(0)

转摘:PCA算法
摘要:function [eigvector, eigvalue, elapse] = PCA(data, ReducedDim)%PCA Principal Component Analysis%% Usage:% [eigvector, eigvalue] = PCA(data, ReducedDim)% [eigvector, eigvalue] = PCA(data)% % Input:% da... 阅读全文

posted @ 2009-02-17 18:58 zengqs 阅读(1704) 评论(0) 推荐(0)

Haar分类器,ObjectMarker程序源代码
摘要:/** * Modifications to be made: * 1. Two possible modes: free-size windowing and fixed-scale windowing * !!DONE!! 2. Add and remove the newly added window * !!DONE!! 3. Expand the width or height of t... 阅读全文

posted @ 2009-02-12 19:16 zengqs 阅读(1894) 评论(0) 推荐(0)

OpenCV训练分类器
摘要:OpenCV训练分类器一、简介 目标检测方法最初由Paul Viola [Viola01]提出,并由Rainer Lienhart [Lienhart02]对这一方法进行了改善。该方法的基本步骤为: 首先,利用样本(大约几百幅样本图片)的 harr 特征进行分类器训练,得到一个级联的boosted分类器。 分类器中的"级联"是指最终的分类器是由几个简单分类器级联组成。在图像检测中,被检窗口依次通过... 阅读全文

posted @ 2009-02-12 16:33 zengqs 阅读(7984) 评论(4) 推荐(4)

摘自:Emgu.CV项目,An object recognizer using PCA (Principle Components Analysis)
摘要:using System;using System.Collections.Generic;using System.Text;using System.Runtime.InteropServices;using System.Diagnostics;using System.Xml.Serialization;using System.Xml;using System.Runtime.Seria... 阅读全文

posted @ 2009-02-06 11:36 zengqs 阅读(2465) 评论(0) 推荐(0)

VisualSVN1.6.1破解
摘要:今日安装VisualSVN1.6.1 For VS2008,没有注册码,参考一些资料破解原始注册,无时间限制,将VisualSVN.Core.dll替换原始安装文件就可以了。顺便在推荐一个前几天刚破解的crResharp破解文件 ,由于论坛限制文件大小,原始安装文件自己去官方下载。 阅读全文

posted @ 2009-02-05 23:18 zengqs 阅读(662) 评论(0) 推荐(0)

视频监控和行为理解的网络资源
摘要:http://mha.cs.umn.edu/index.html The problem of using computer vision to track and understand the behavior of human beings is a very important one. It has applications in the areas of human-computer i... 阅读全文

posted @ 2009-02-05 11:26 zengqs 阅读(1166) 评论(0) 推荐(0)

高斯背景建模C#版本
摘要:using System;using System.Collections.Generic;using System.Text;using Emgu.Util;using System.Runtime.InteropServices;using Emgu.CV.Structure; namespace Emgu.CV{ /// <summary> /// Background sta... 阅读全文

posted @ 2009-02-04 16:39 zengqs 阅读(1589) 评论(2) 推荐(0)

高斯背景建模
摘要:高斯背景建模代码:#include <stdio.h>#include <cv.h>#include <cxcore.h>#include <highgui.h>#include <cvaux.h>//必须引此头文件int main( int argc, char** argv ){ IplImage* pFrame = NULL; Ip... 阅读全文

posted @ 2009-02-04 16:36 zengqs 阅读(1556) 评论(1) 推荐(0)

C#定义一个模板类
摘要:今天要实现模板类,查找一些资料,发现非常有意思,估计对大家有帮助,所以共享一下。 using System;using System.Collections.Generic;using System.Linq;using System.Text; using Emgu.CV; namespace VSL.Plugin.TrackingSystem.GaitAnalysisTrackingSy... 阅读全文

posted @ 2009-02-02 21:52 zengqs 阅读(6892) 评论(1) 推荐(1)

转帖:人脸检测概述
摘要:转自http://blog.csdn.net/ranmer/archive/2008/04/14/2292335.aspx 前一阵子的工作已经告一段落了,新的挑战即将开始,既然选择了它,就要无悔,开弓没有回头箭,努力吧!! 人脸检测的任务是在复杂的背景下检测图像中有无人脸,从而判断人是否存在,并提取出人脸面部图像信息. 欧式距离: 在二维和三维空间中的欧式距离的就是两点之间的距离,二维的公式... 阅读全文

posted @ 2009-02-02 19:45 zengqs 阅读(1386) 评论(0) 推荐(0)

人脸检测的算法
摘要://静态变量提高访问速度//Read the HaarCascade objectsstatic HaarCascade face = new HaarCascade(".\\haarcascades\\haarcascade_frontalface_alt_tree.xml");static HaarCascade eye = new HaarCascade(".\\haarcascades\\... 阅读全文

posted @ 2009-02-02 19:29 zengqs 阅读(2435) 评论(0) 推荐(0)

C#转换为灰度图的算法
摘要:public static unsafe void GrayscaleImage(BitmapData sourceImage, IntPtr destBuffer) { int width = sourceImage.Width; int height = sourceImage.Height; // do the job var src = (byte*) sourceImage.Scan0.... 阅读全文

posted @ 2009-02-01 16:33 zengqs 阅读(1103) 评论(0) 推荐(0)

一个人脸检测器
摘要:本文使用到Emgu.CV库,该库是C#语言对OpenCV的封装,以下是一个列子程序的改正版本。 using System;using System.Collections.Generic;using System.Text;using Emgu.CV.Structure;using Emgu.CV; namespace VSL.Plugin.TrackingSystem.SimpleTracki... 阅读全文

posted @ 2009-02-01 16:29 zengqs 阅读(4873) 评论(0) 推荐(1)

测试用是Windows Live Writer写日志
摘要:测试用是Windows Live Writer写日志 阅读全文

posted @ 2009-02-01 16:20 zengqs 阅读(249) 评论(0) 推荐(0)

转帖:关于computer vision的会议及vision guys (zz)
摘要:来自:http://ekcheng.spaces.live.com/?_c11_BlogPart_BlogPart=blogview&_c=BlogPart 众所周知, computer vision(cv) 存在ICCV/CVPR/ECCV三个顶级会议, 它们档次差不多, 都应该在一流会议行列, 没有必要给个高下. 有些us的人认为ICCV/CVPR略好于ECCV,而欧洲人大都认为ICC... 阅读全文

posted @ 2009-02-01 02:11 zengqs 阅读(904) 评论(0) 推荐(0)