摘要:系统自带的记事本notepad.exe软件的缺点不言而喻,我们可能想使用notepad2.exe等功能更强的程序来代替系统自带的记事本(notepad.exe),但是仅将原notepad.exe用notepad2.exe替换后,系统会自动还原成以前的文件。那怎样才能强制替换掉它呢? 在WinXP/2003下:首先备份好原版的Notepad.exe步骤1:替换掉 c:\Windows\system3...
阅读全文
摘要:function [eigvector, eigvalue, elapse] = PCA(data, ReducedDim)%PCA Principal Component Analysis%% Usage:% [eigvector, eigvalue] = PCA(data, ReducedDim)% [eigvector, eigvalue] = PCA(data)% % Input:% da...
阅读全文
摘要:/** * 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...
阅读全文
摘要:OpenCV训练分类器一、简介 目标检测方法最初由Paul Viola [Viola01]提出,并由Rainer Lienhart [Lienhart02]对这一方法进行了改善。该方法的基本步骤为: 首先,利用样本(大约几百幅样本图片)的 harr 特征进行分类器训练,得到一个级联的boosted分类器。 分类器中的"级联"是指最终的分类器是由几个简单分类器级联组成。在图像检测中,被检窗口依次通过...
阅读全文
摘要: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...
阅读全文
摘要:今日安装VisualSVN1.6.1 For VS2008,没有注册码,参考一些资料破解原始注册,无时间限制,将VisualSVN.Core.dll替换原始安装文件就可以了。顺便在推荐一个前几天刚破解的crResharp破解文件 ,由于论坛限制文件大小,原始安装文件自己去官方下载。
阅读全文
摘要: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...
阅读全文
摘要: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...
阅读全文
摘要:高斯背景建模代码:#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...
阅读全文
摘要:今天要实现模板类,查找一些资料,发现非常有意思,估计对大家有帮助,所以共享一下。 using System;using System.Collections.Generic;using System.Linq;using System.Text; using Emgu.CV; namespace VSL.Plugin.TrackingSystem.GaitAnalysisTrackingSy...
阅读全文
摘要:转自http://blog.csdn.net/ranmer/archive/2008/04/14/2292335.aspx 前一阵子的工作已经告一段落了,新的挑战即将开始,既然选择了它,就要无悔,开弓没有回头箭,努力吧!! 人脸检测的任务是在复杂的背景下检测图像中有无人脸,从而判断人是否存在,并提取出人脸面部图像信息. 欧式距离: 在二维和三维空间中的欧式距离的就是两点之间的距离,二维的公式...
阅读全文
摘要://静态变量提高访问速度//Read the HaarCascade objectsstatic HaarCascade face = new HaarCascade(".\\haarcascades\\haarcascade_frontalface_alt_tree.xml");static HaarCascade eye = new HaarCascade(".\\haarcascades\\...
阅读全文
摘要: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....
阅读全文
摘要:本文使用到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...
阅读全文
摘要:测试用是Windows Live Writer写日志
阅读全文
摘要:来自:http://ekcheng.spaces.live.com/?_c11_BlogPart_BlogPart=blogview&_c=BlogPart 众所周知, computer vision(cv) 存在ICCV/CVPR/ECCV三个顶级会议, 它们档次差不多, 都应该在一流会议行列, 没有必要给个高下. 有些us的人认为ICCV/CVPR略好于ECCV,而欧洲人大都认为ICC...
阅读全文