OpenCVFastCorner

所属分类:OpenCV
开发工具:Visual C++
文件大小:2291KB
下载次数:18
上传日期:2013-06-09 13:16:34
上 传 者wangnancpp
说明:  利用OpenCV的库 进行快速角点检测的Demo,适合初学者学习
(Using OpenCV library for fast corner detection Demo, suitable for beginners to learn)

文件列表:
OpenCVFastCorner\Debug\BuildLog.htm (7496, 2013-02-22)
OpenCVFastCorner\Debug\fast.obj (9044, 2012-12-17)
OpenCVFastCorner\Debug\fast_10.obj (86162, 2012-12-17)
OpenCVFastCorner\Debug\fast_11.obj (73812, 2012-12-17)
OpenCVFastCorner\Debug\fast_12.obj (60856, 2012-12-17)
OpenCVFastCorner\Debug\fast_9.obj (106840, 2012-12-17)
OpenCVFastCorner\Debug\main.obj (112652, 2013-02-22)
OpenCVFastCorner\Debug\mt.dep (67, 2013-02-22)
OpenCVFastCorner\Debug\nonmax.obj (6478, 2012-12-17)
OpenCVFastCorner\Debug\OpenCVFastCorner.exe (259584, 2013-02-22)
OpenCVFastCorner\Debug\OpenCVFastCorner.exe.embed.manifest (663, 2012-12-17)
OpenCVFastCorner\Debug\OpenCVFastCorner.exe.embed.manifest.res (728, 2012-12-17)
OpenCVFastCorner\Debug\OpenCVFastCorner.exe.intermediate.manifest (621, 2013-02-22)
OpenCVFastCorner\Debug\OpenCVFastCorner.ilk (586896, 2013-02-22)
OpenCVFastCorner\Debug\OpenCVFastCorner.pdb (1633280, 2013-02-22)
OpenCVFastCorner\Debug\vc90.idb (510976, 2013-02-22)
OpenCVFastCorner\Debug\vc90.pdb (995328, 2013-02-22)
OpenCVFastCorner\FastCorner\fast.c (1736, 2009-01-11)
OpenCVFastCorner\FastCorner\fast.h (1632, 2009-01-11)
OpenCVFastCorner\FastCorner\fast_10.c (149608, 2009-01-11)
OpenCVFastCorner\FastCorner\fast_11.c (124822, 2009-01-11)
OpenCVFastCorner\FastCorner\fast_12.c (99204, 2009-01-11)
OpenCVFastCorner\FastCorner\fast_9.c (189198, 2009-01-11)
OpenCVFastCorner\FastCorner\nonmax.c (2891, 2009-01-11)
OpenCVFastCorner\main.cpp (1868, 2013-02-22)
OpenCVFastCorner\OpenCVFastCorner.ncb (8793088, 2013-02-22)
OpenCVFastCorner\OpenCVFastCorner.sln (897, 2012-12-17)
OpenCVFastCorner\OpenCVFastCorner.suo (19456, 2013-02-22)
OpenCVFastCorner\OpenCVFastCorner.vcproj (4628, 2012-12-17)
OpenCVFastCorner\OpenCVFastCorner.vcproj.WANGNAN.121.user (1411, 2013-02-22)
OpenCVFastCorner\Debug (0, 2013-02-22)
OpenCVFastCorner\FastCorner (0, 2012-12-17)
OpenCVFastCorner (0, 2013-02-22)

FAST feature detectors in C Version 2.0 --------------------------------------- The files are valid C and C++ code, and have no special requirements for compiling, and they do not depend on any libraries. Just compile them along with the rest of your project. To use the functions, #include "fast.h" The corner detectors have the following prototype (where X is 9, 10, 11 or 12): xy* fastX_detect_nonmax(const unsigned char * data, int xsize, int ysize, int stride, int threshold, int* numcorners) Where xy is the following simple struct typedef: typedef struct { int x, y; } xy; The image is passed in as a block of data and dimensions, and the list of corners is returned as an array of xy structs, and an integer (numcorners) with the number of corners returned. The data can be deallocated with free(). Nonmaximal suppression is performed on the corners. Note that the stride is the number of bytes between rows. If your image has no padding, then this is the same as xsize. The detection, scoring and nonmaximal suppression are available as individual functions. To see how to use the individual functions, see fast.c

近期下载者

相关文件


收藏者