Fast Corner Detection
在机器视觉里面,角点检测有好几种;其中,属Fast Corner Detection 比较好用。下面,介绍Fast Corner Detection源码。
读者可以下载自己所需要的版本。下面以Opencv 版本为例。
由于Opencv版本的问题,会遇到如错误。
fatal error C1083: 无法打开包括文件:“cxtypes.h”: No such file or directory
解决:
代码块
将#include <cxtypes.h>
改成
#include “cv.h”
#include “cxcore.h”
#include “highgui.h”
下面,附加上main.cpp
代码块
include <cvaux.h>
#include <highgui.h>
#include "cvfast.h"
int main(int argc, char* argv[])
{
/////////////////////////////////////////////