location.h

来自「车牌识别(改定位)武汉理工大学」· C头文件 代码 · 共 41 行

H
41
字号
// Location.h: interface for the CLocation class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_LOCATION_H__605C4296_9ED9_4353_B3ED_BB5F999F5FEF__INCLUDED_)
#define AFX_LOCATION_H__605C4296_9ED9_4353_B3ED_BB5F999F5FEF__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CLocation  
{
public:
	CLocation();
	virtual ~CLocation();
public:
	virtual BOOL Locate(CImage& ImgVLP,CRect &rcVLP,CImage &ImgOrg,int nTh)=0;
};


class CSegmentation  
{
public:
	CSegmentation();
	virtual ~CSegmentation();
public:
	virtual BOOL Segment(CList<CImage,CImage &> &ImgOutList,CImage &ImgVLP,CRect rcVLP, CImage &ImgOrg,BOOL &m_bBlack,BOOL IsEnter)=0;
};


class CRectification  
{
public:
	CRectification();
	virtual ~CRectification();
public:
	virtual BOOL Rectify(CImage &ImgOut,double &dAngle,CImage &ImgIn )=0;
};

#endif // !defined(AFX_LOCATION_H__605C4296_9ED9_4353_B3ED_BB5F999F5FEF__INCLUDED_)

⌨️ 快捷键说明

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