OSDN Git Service

Create a new command for edge enhancement before edge detection
[eos/hostdependX86LINUX64.git] / include / mapFile.h
1 /*
2 # %M% %Y% %I%
3 # The latest update : %G% at %U%
4 #
5 #%Z% mapFile.h ver %I%
6 #%Z% Created by 
7 #%Z%
8 #%Z% Usage : mapFile.h 
9 #%Z% Attention
10 #%Z%
11 */
12
13 /* struct begin */
14
15 typedef struct mapFileShortCoord {
16         short x;
17         short y;
18         short z;
19 } mapShortCoord;
20
21 typedef struct mapFileHeader {
22         mapShortCoord Start;
23         mapShortCoord N;
24         mapShortCoord M;
25         mapShortCoord Length;
26         mapShortCoord Angle;
27         short prod;
28         short plus;
29         short i1;
30         short i2;
31         short dummy[256-19];
32 } mapFileHeader;
33
34 typedef struct mapFile {
35         mapFileHeader Header;
36         unsigned char* Image;
37 } mapFile;
38
39 /* struct end */