摘要: VS2012下实现类库,并调用。1.创建类库2.代码如下:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.IO;namespace ClassLibrary{ public class Person { private string name; public Person(string name) { this.name ... 阅读全文
posted @ 2014-03-07 23:50 Jie Forest 阅读(17296) 评论(0) 推荐(1) 编辑
摘要: 转自:http://blog.csdn.net/crzy_sparrow/article/details/7391511文章目录:一、Harris角点检测基本理论二、opencv代码实现三、改进的Harris角点检测四、FAST角点检测五、参考文献六、附录(资料和源码)一、Harris角点检测基本理论(要讲清楚东西太多,附录提供文档详细说明)1.1简略表达:角点:最直观的印象就是在水平、竖直两个方向上变化均较大的点,即Ix、Iy都较大边缘:仅在水平、或者仅在竖直方向有较大的变化量,即Ix和Iy只有其一较大平坦地区:在水平、竖直方向的变化量均较小,即Ix、Iy都较小角点响应R=det(M)-k* 阅读全文
posted @ 2014-03-07 14:34 Jie Forest 阅读(425) 评论(0) 推荐(0) 编辑