edgecontour.h
来自「vc++数字图像处理 ,是一本很不错的介绍数字图像方面的书籍,这里有本书的全部源」· C头文件 代码 · 共 35 行
H
35 行
// edgecontour.h#define pi 3.1415927#ifndef _INC_EdgeContourAPI#define _INC_EdgeContourAPI// 函数原型BOOL WINAPI RobertDIB(LPSTR lpDIBBits, LONG lWidth, LONG lHeight);BOOL WINAPI SobelDIB(LPSTR lpDIBBits, LONG lWidth, LONG lHeight);BOOL WINAPI PrewittDIB(LPSTR lpDIBBits, LONG lWidth, LONG lHeight);BOOL WINAPI KirschDIB(LPSTR lpDIBBits, LONG lWidth, LONG lHeight);BOOL WINAPI GaussDIB(LPSTR lpDIBBits, LONG lWidth, LONG lHeight);BOOL WINAPI HoughDIB(LPSTR lpDIBBits, LONG lWidth, LONG lHeight);BOOL WINAPI FillDIB(LPSTR lpDIBBits, LONG lWidth, LONG lHeight);BOOL WINAPI Fill2DIB(LPSTR lpDIBBits, LONG lWidth, LONG lHeight);BOOL WINAPI ContourDIB(LPSTR lpDIBBits, LONG lWidth, LONG lHeight);BOOL WINAPI TraceDIB(LPSTR lpDIBBits, LONG lWidth, LONG lHeight);#endif //!_INC_EdgeContourAPItypedef struct{ int Value; int Dist; int AngleNumber;} MaxValue;typedef struct{ int Height; int Width;} Seed;typedef struct{ int Height; int Width;} Point;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?