-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathedgecontour.h
More file actions
35 lines (29 loc) · 974 Bytes
/
edgecontour.h
File metadata and controls
35 lines (29 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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_EdgeContourAPI
typedef struct{
int Value;
int Dist;
int AngleNumber;
} MaxValue;
typedef struct{
int Height;
int Width;
} Seed;
typedef struct{
int Height;
int Width;
} Point;