Jafar
|
00001 /* $Id$ */ 00002 00003 #ifndef _BASIC_STRUCT_H 00004 #define _BASIC_STRUCT_H 00005 00006 namespace jafar { 00007 namespace locpano { 00008 00009 /*********************************************************************** 00010 * 00011 * Coordinates of a point in an image 00012 * 00013 **********************************************************************/ 00014 typedef struct 00015 { 00016 int x; 00017 int y; 00018 }Point_xy; 00019 00020 00021 /*********************************************************************** 00022 * 00023 * TODO 00024 * 00025 **********************************************************************/ 00026 typedef struct 00027 { 00028 int Min; 00029 int Max; 00030 }MinMax; 00031 00032 /*********************************************************************** 00033 * 00034 * TODO 00035 * 00036 **********************************************************************/ 00037 typedef struct 00038 { 00039 int i; 00040 int j; 00041 }Point_ij; 00042 00043 #define Size_ij Point_ij 00044 00045 /*********************************************************************** 00046 * 00047 * TODO 00048 * 00049 **********************************************************************/ 00050 typedef struct 00051 { 00052 Point_ij LeftUp; 00053 Point_ij RightDown; 00054 }Rectangle; 00055 00056 00057 00058 #define NoGRIS 256 /*Niveaus de Gris 2^8 = 256 */ 00059 #define SEUILS 3 /*No de Minimums -> SEUILS+1 -> intervals */ 00060 #define BINS 1 /*No. de BITS */ 00061 #define NoGB 256 /* NoGRIS/BINS */ 00062 00063 } 00064 } 00065 00066 #endif /* _BASIC_STRUCT_H */
Generated on Wed Oct 15 2014 00:37:25 for Jafar by doxygen 1.7.6.1 |