資源簡介
SURF算法和SIFT算法的比較代碼,兩者都包含
代碼片段和文件信息
/*
?Descriptor?file?for?SURF
?
?Copyright?2013:?Edouard?Oyallon?Julien?Rabin
?
?Version?for?IPOL.
?*/
#include?“descriptor.h“
//?For?a?given?list?of?keypoints?return?the?associated?list?of?descriptors.
//?Handle?the?integral?image?suppression.
listDescriptor*?getDescriptor(imageIntegral*?imgIntlistKeyPoints*?lPC)
{
listDescriptor*?lD=new?listDescriptor();
????//?Compute?descriptor?from?each?keypoints
for(int?i=0;i<(int)lPC->size();i++)
lD->push_back(makeDescriptor(imgInt?(*lPC)[i]));
delete?imgInt;/*MemCheck*/
return?lD;
}
//?Create?a?descriptor?in?a?squared?domain?of?size?20*scale
descriptor*?makeDescriptor(imageIntegral*?imgIntkeyPoint*?pC)
{
REGULAR_IMAGE?scale=pC->scale;
descriptor*?desc=new?descriptor();
//?Divide?in?a?4x4?zone?the?space?around?the?interest?point
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2014-05-19?13:32??demo_SURF_src\
?????文件????????3519??2014-04-14?12:51??demo_SURF_src\desc
?????文件????????1879??2014-03-17?08:57??demo_SURF_src\desc
?????文件????????6545??2014-03-19?12:48??demo_SURF_src\display_images_surf.cpp
?????文件?????????513??2014-03-17?08:57??demo_SURF_src\display_images_surf.h
?????目錄???????????0??2014-01-06?09:07??demo_SURF_src\examples\
?????文件??????122852??2014-01-06?09:07??demo_SURF_src\examples\gobelet.png
?????文件??????345811??2014-01-06?09:07??demo_SURF_src\examples\gobelet2.png
?????文件????????2466??2014-03-17?08:57??demo_SURF_src\extract_surf.cpp
?????文件?????????221??2014-03-19?12:48??demo_SURF_src\extract_surf.h
?????文件????????3908??2014-03-17?08:57??demo_SURF_src\image.cpp
?????文件????????1874??2014-03-19?12:48??demo_SURF_src\image.h
?????文件????????1056??2014-04-14?08:49??demo_SURF_src\integral.h
?????文件???????21285??2014-01-06?09:07??demo_SURF_src\io_png.c
?????文件?????????844??2014-01-06?09:07??demo_SURF_src\io_png.h
?????文件????????8522??2014-03-17?08:57??demo_SURF_src\keypoint.cpp
?????文件????????2100??2014-02-25?12:27??demo_SURF_src\keypoint.h
?????文件????????1308??2014-04-14?08:49??demo_SURF_src\lib.h
?????文件????????3715??2014-03-17?08:57??demo_SURF_src\lib_match_surf.cpp
?????文件?????????653??2014-03-19?12:48??demo_SURF_src\lib_match_surf.h
?????目錄???????????0??2014-05-19?13:30??demo_SURF_src\libMatch\
?????文件?????????101??2014-01-06?09:07??demo_SURF_src\libMatch\CMakeLists.txt
?????文件????????1070??2014-01-06?09:07??demo_SURF_src\libMatch\match.cpp
?????文件?????????453??2014-01-06?09:07??demo_SURF_src\libMatch\match.h
?????目錄???????????0??2014-01-06?09:07??demo_SURF_src\libNumerics\
?????文件?????????276??2014-01-06?09:07??demo_SURF_src\libNumerics\CMakeLists.txt
?????文件???????17304??2014-01-06?09:07??demo_SURF_src\libNumerics\computeH.cpp
?????文件????????1321??2014-01-06?09:07??demo_SURF_src\libNumerics\homography.cpp
?????文件????????2941??2014-01-06?09:07??demo_SURF_src\libNumerics\homography.h
?????文件???????12824??2014-01-06?09:07??demo_SURF_src\libNumerics\matrix.cpp
?????文件????????5201??2014-01-06?09:07??demo_SURF_src\libNumerics\matrix.h
............此處省略283個文件信息
- 上一篇:msvcr100.dll
- 下一篇:簡單的flash 動畫作業
評論
共有 條評論