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

📄 camengine.h

📁 指纹算法引擎(内含指纹预处理和比对算法)本程序是由VC++编程的
💻 H
字号:

// The following ifdef block is the standard way of creating macros which make exporting 
// from a DLL simpler. All files within this DLL are compiled with the CAMENGINE_EXPORTS
// symbol defined on the command line. this symbol should not be defined on any project
// that uses this DLL. This way any other project whose source files include this file see 
// CAMENGINE_API functions as being imported from a DLL, wheras this DLL sees symbols
// defined with this macro as being exported.
#pragma comment(lib, "Debug/CamEngine.lib")

#ifdef CAMENGINE_EXPORTS
#define CAMENGINE_API __declspec(dllexport)
#else
#define CAMENGINE_API __declspec(dllimport)
#endif


#define		SENSOR_17_SMALL				0
#define		SENSOR_17_MIDDLE			1		

int g_RectifyParm[8][8] = {31,31,606,31,121,463,521,463,
							25,6,609,6,104,475,538,475};
int g_SensorID = 0;

#ifdef __cplusplus
extern "C"
{
#endif


// This class is exported from the CamEngine.dll
class CAMENGINE_API CCamEngine {
public:
	CCamEngine(void);
	// TODO: add your methods here.
};

extern CAMENGINE_API int nCamEngine;

CAMENGINE_API int fnCamEngine(void);


CAMENGINE_API int Camera_Init(void);
CAMENGINE_API int Camera_Exit(void);
CAMENGINE_API int Camera_Capture(BYTE *lpImage, BYTE sensorID);
CAMENGINE_API int Camera_CaptureToFile(LPCSTR lpszFileName, BYTE *lpImage, BYTE sensorID);
CAMENGINE_API void Camera_Pause();
CAMENGINE_API void Camera_Run();


#ifdef __cplusplus
}
#endif

⌨️ 快捷键说明

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