-
大小: 5KB文件類型: .zip金幣: 2下載: 0 次發(fā)布日期: 2021-05-18
- 語言: C/C++
- 標(biāo)簽: Susan角點(diǎn)??
資源簡(jiǎn)介
針對(duì)圖像的Susan角點(diǎn)檢測(cè)算法,該代碼寫得非常穩(wěn)健,我處理非常大的遙感圖像,反復(fù)調(diào)用都不會(huì)出任何問題,相信對(duì)你有所幫助,我會(huì)及時(shí)共享我的最新代碼,共同學(xué)習(xí),共同交流,共同進(jìn)步

代碼片段和文件信息
//?CornerDetector.cpp:?implementation?of?the?CCornerDetector?class.
//
//////////////////////////////////////////////////////////////////////
#include?“stdafx.h“
#include?“CornerDetector.h“
#ifdef?_DEBUG
#undef?THIS_FILE
static?char?THIS_FILE[]=__FILE__;
#define?new?DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
//?Construction/Destruction
//////////////////////////////////////////////////////////////////////
CCornerDetector::CCornerDetector()
{
m_pdata=NULL;
m_nwidth=0;
m_nheight=0;
m_CornerList.reserve(0);
}
CCornerDetector::~CCornerDetector()
{
m_CornerList.clear();
}
void?CCornerDetector::SetImage(BYTE*?pdataint?widthint?height)
{
if?(pdata!=NULL)
{
m_pdata=pdata;
m_nwidth=width;
m_nheight=height;
}
}
/*CORNER_LIST**/vector?CCornerDetector::GetCornerList()
{
return?m_CornerList;
}
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2014-08-11?16:36??Sunsan角點(diǎn)檢測(cè)算法代碼\
?????文件?????????916??2014-04-11?11:09??Sunsan角點(diǎn)檢測(cè)算法代碼\CornerDetector.cpp
?????文件????????1447??2014-04-11?10:48??Sunsan角點(diǎn)檢測(cè)算法代碼\CornerDetector.h
?????文件???????19450??2014-04-30?15:56??Sunsan角點(diǎn)檢測(cè)算法代碼\SusanCornerDetector.cpp
?????文件?????????862??2007-12-29?13:53??Sunsan角點(diǎn)檢測(cè)算法代碼\SusanCornerDetector.h
評(píng)論
共有 條評(píng)論