⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 harris1.h

📁 VC写的harris角点检测程序。又名plessey
💻 H
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -