detect.h

来自「包含了所有经典的数字图像处理的源代码」· C头文件 代码 · 共 16 行

H
16
字号
// detect.h


#ifndef _INC_DetectAPI
#define _INC_DetectAPI


// 函数原型
BOOL WINAPI ThresholdDIB (LPSTR lpDIBBits, LONG lWidth, LONG lHeight);
BOOL WINAPI AddMinusDIB (LPSTR lpDIBBits, LPSTR lpDIBBitsBK, LONG lWidth, LONG lHeight, bool bAddMinus);
BOOL WINAPI HprojectDIB (LPSTR lpDIBBits, LONG lWidth, LONG lHeight);
BOOL WINAPI VprojectDIB (LPSTR lpDIBBits, LONG lWidth, LONG lHeight);
BOOL WINAPI TemplateMatchDIB (LPSTR lpDIBBits, LPSTR lpTemplateDIBBits, 
							  LONG lWidth, LONG lHeight,LONG lTemplateWidth,LONG lTemplateHeight);

#endif //!_INC_DetectAPI

⌨️ 快捷键说明

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