harris1.h

来自「VC写的harris角点检测程序。又名plessey」· C头文件 代码 · 共 28 行

H
28
字号
// Harris1.h: interface for the CHarris class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_HARRIS1_H__5E8B9FD1_F1EE_4F43_AFD7_15CB906A567E__INCLUDED_)
#define AFX_HARRIS1_H__5E8B9FD1_F1EE_4F43_AFD7_15CB906A567E__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include <afxwin.h>
#include "Afxtempl.h"

class CHarris  
{
public:
	void MakeGauss2(double sigma, double **pdKernel, int pnWindowSize);
	void Gaussian(double sigma, double *pUnchSmooth1,double *pUnchSmooth2,double *pUnchSmooth3);
	void DirGrad2(double *pnGradX , double *pnGradY,double *pnGradXY);
	void Harris(double sigma,int thresh,int radius);
public:
	CHarris();
	virtual ~CHarris();

};

#endif // !defined(AFX_HARRIS1_H__5E8B9FD1_F1EE_4F43_AFD7_15CB906A567E__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?