All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Config.h
Go to the documentation of this file.
1 /* Copyright (C) 2001-2009 National Institute For Space Research (INPE) - Brazil.
2 
3  This file is part of the TerraLib - a Framework for building GIS enabled applications.
4 
5  TerraLib is free software: you can redistribute it and/or modify
6  it under the terms of the GNU Lesser General Public License as published by
7  the Free Software Foundation, either version 3 of the License,
8  or (at your option) any later version.
9 
10  TerraLib is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU Lesser General Public License for more details.
14 
15  You should have received a copy of the GNU Lesser General Public License
16  along with TerraLib. See COPYING. If not, write to
17  TerraLib Team at <terralib-team@terralib.org>.
18  */
19 
20 /*!
21  \file terralib/rp/Config.h
22 
23  \brief Configuration flags for the Raster Processing module of TerraLib.
24  */
25 
26 #ifndef __TERRALIB_RP_INTERNAL_CONFIG_H
27 #define __TERRALIB_RP_INTERNAL_CONFIG_H
28 
29 /*!
30  \defgroup rp_class Classification
31  \brief Algorithms to detect patterns in raster regions using different methods.
32  \ingroup rp
33 */
34 
35 /*!
36  \defgroup rp_aux Auxiliary classes
37  \brief Raster processing auxiliary classes.
38  \ingroup rp
39 */
40 
41 /*!
42  \defgroup rp_func Auxiliary functions.
43  \brief Raster processing auxiliary functions.
44  \ingroup rp
45 */
46 
47 /*!
48  \defgroup rp_enh Enhancement
49  \brief Raster enhancement algorithms.
50  \ingroup rp
51 */
52 
53 /*!
54  \defgroup rp_mos Mosaic
55  \brief Algorithms to merge two or more rasters into a single one.
56  \ingroup rp
57 */
58 
59 /*!
60  \defgroup rp_fus Fusion
61  \brief Algorithms to combine pixel information from different sensors to obtain better spatial or radiometric resolutions.
62  \ingroup rp
63 */
64 
65 /*!
66  \defgroup rp_gen General purpose
67  \brief General pupose raster processing algorithms.
68  \ingroup rp
69 */
70 
71 /*!
72  \defgroup rp_seg Segmentation
73  \brief Techniques for splitting one rasters into its components as homogeneous regions.
74  \ingroup rp
75 */
76 
77 /*!
78  \defgroup rp_match Matching
79  \brief Techniques to create tie-points between rasters by matching and correlating homologous regions.
80  \ingroup rp
81 */
82 
83 // TerraLib
84 #include "../Config.h"
85 
86 #define TE_RP_MODULE_NAME "te.rasterprocessing"
87 
88 /*!
89  \def TERPEXPORT
90 
91  \brief You can use this macro in order to export/import classes and functions from this module.
92 
93  \note If you want to compile TerraLib as DLL in Windows, remember to insert TERPEXPORT into the project's list of defines.
94 
95  \note If you want to compile TerraLib as an Static Library under Windows, remember to insert the TERPEXPORT flag into the project list of defines.
96  */
97 #ifdef WIN32
98 
99 #ifdef _MSC_VER
100 #pragma warning( disable : 4251 )
101 #endif
102 
103 #ifdef TERPSTATIC
104 #define TERPEXPORT // Don't need to export/import... it is a static library
105 #elif TERPDLL
106 #define TERPEXPORT __declspec(dllexport) // export DLL information
107 #else
108 #define TERPEXPORT __declspec(dllimport) // import DLL information
109 #endif
110 #else
111 #define TERPEXPORT
112 #endif
113 
114 #endif // __TERRALIB_RP_INTERNAL_CONFIG_H
115