xxxx18一60岁hd中国/日韩女同互慰一区二区/西西人体扒开双腿无遮挡/日韩欧美黄色一级片 - 色护士精品影院www

  • 大小: 5KB
    文件類型: .rar
    金幣: 2
    下載: 0 次
    發(fā)布日期: 2023-07-18
  • 語言: 其他
  • 標(biāo)簽: 濾波??

資源簡介

利用Gabor濾波器對圖像進(jìn)行處理目標(biāo)檢測與跟蹤,車輛特征識別,人臉識別,字符識別,特征提取, 圖像分割,手勢識別,計(jì)算機(jī)視覺視頻教程,opencv基礎(chǔ)知識

資源截圖

代碼片段和文件信息

/***************************************************************************

#include?“cvgabor.h“

CvGabor::CvGabor()
{
}


CvGabor::~CvGabor()
{
cvReleaseMat(?&Real?);
cvReleaseMat(?&Imag?);
}




/*!
\fn?CvGabor::CvGabor(int?iMu?int?iNu?double?dSigma)
Construct?a?gabor

Parameters:
iMu The?orientation?iMu*PI/8
iNu? The?scale
dSigma? The?sigma?value?of?Gabor

Returns:
None

Create?a?gabor?with?a?orientation?iMu*PI/8?a?scale?iNu?and?a?sigma?value?dSigma.?The?spatial?frequence?(F)?is?set?to?sqrt(2)?defaultly.?It?calls?Init()?to?generate?parameters?and?kernels.
*/
CvGabor::CvGabor(int?iMu?int?iNu?double?dSigma)
{?
F?=?sqrt(2.0);
Init(iMu?iNu?dSigma?F);
}


/*!
\fn?CvGabor::CvGabor(int?iMu?int?iNu?double?dSigma?double?dF)
Construct?a?gabor

Parameters:
iMu The?orientation?iMu*PI/8
iNu? The?scale
dSigma? The?sigma?value?of?Gabor
dF The?spatial?frequency?

Returns:
None

Create?a?gabor?with?a?orientation?iMu*PI/8?a?scale?iNu?a?sigma?value?dSigma?and?a?spatial?frequence?dF.?It?calls?Init()?to?generate?parameters?and?kernels.
*/
CvGabor::CvGabor(int?iMu?int?iNu?double?dSigma?double?dF)
{

Init(iMu?iNu?dSigma?dF);

}


/*!
\fn?CvGabor::CvGabor(double?dPhi?int?iNu)
Construct?a?gabor

Parameters:
dPhi The?orientation?in?arc
iNu? The?scale

Returns:
None

Create?a?gabor?with?a?orientation?dPhi?and?with?a?scale?iNu.?The?sigma?(Sigma)?and?the?spatial?frequence?(F)?are?set?to?2*PI?and?sqrt(2)?defaultly.?It?calls?Init()?to?generate?parameters?and?kernels.
*/
CvGabor::CvGabor(double?dPhi?int?iNu)
{
Sigma?=?2*PI;
F?=?sqrt(2.0);
Init(dPhi?iNu?Sigma?F);
}


/*!
\fn?CvGabor::CvGabor(double?dPhi?int?iNu?double?dSigma)
Construct?a?gabor

Parameters:
dPhi The?orientation?in?arc
iNu? The?scale
dSigma The?sigma?value?of?Gabor

Returns:
None

Create?a?gabor?with?a?orientation?dPhi?a?scale?iNu?and?a?sigma?value?dSigma.?The?spatial?frequence?(F)?is?set?to?sqrt(2)?defaultly.?It?calls?Init()?to?generate?parameters?and?kernels.
*/
CvGabor::CvGabor(double?dPhi?int?iNu?double?dSigma)
{

F?=?sqrt(2.0);
Init(dPhi?iNu?dSigma?F);
}


/*!
\fn?CvGabor::CvGabor(double?dPhi?int?iNu?double?dSigma?double?dF)
Construct?a?gabor

Parameters:
dPhi The?orientation?in?arc
iNu? The?scale
dSigma? The?sigma?value?of?Gabor
dF The?spatial?frequency?

Returns:
None

Create?a?gabor?with?a?orientation?dPhi?a?scale?iNu?a?sigma?value?dSigma?and?a?spatial?frequence?dF.?It?calls?Init()?to?generate?parameters?and?kernels.
*/
CvGabor::CvGabor(double?dPhi?int?iNu?double?dSigma?double?dF)
{

Init(dPhi?iNu?dSigmadF);
}

/*!
\fn?CvGabor::IsInit()
Determine?the?gabor?is?initilised?or?not

Parameters:
None

Returns:
a?boolean?value?TRUE?is?initilised?or?FALSE?is?non-initilised.

Determine?whether?the?gabor?has?been?initlized?-?variables?F?K?Kmax?Phi?Sigma?are?filled.
*/
bool?CvGabor::IsInit()
{

return?bInitialised;
}

/*!
\fn?CvGabor::mask_width()
Give?out?the?width?of?the?mask

Parameters:
None

Returns:
The?long?type?show?the?w

?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----

????.CA....??????2794??2008-04-07?12:47??cvgabor.h

?????文件??????16811??2015-05-06?11:43??cvgabor.cpp

-----------?---------??----------?-----??----

????????????????19605????????????????????2


評論

共有 條評論

相關(guān)資源