classification.h
Go to the documentation of this file.
1 /* Copyright (C) 2008 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 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 General Public License for more details.
14 
15  You should have received a copy of the GNU 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/classification.h
22 
23  \brief This file contains include headers for the TerraLib Classification module.
24 */
25 
26 #ifndef __TERRALIB_INTERNAL_CLASSIFICATION_H
27 #define __TERRALIB_INTERNAL_CLASSIFICATION_H
28 
29 // TerraLib
31 #include "classification/Config.h"
32 #include "classification/Dummy.h"
33 #include "classification/Enums.h"
35 #include "classification/ISOData.h"
36 #include "classification/KMeans.h"
37 #include "classification/MAP.h"
39 #include "classification/ROI.h"
40 #include "classification/ROISet.h"
41 #include "classification/Utils.h"
42 
43 /*!
44  \defgroup cl Classification
45 
46  \brief This module provides classes and functions with generic classification capabilities.
47 
48  Basically, the TerraLib Classification module contains several generic classification operations applied to any data type.
49  The main classes/concepts in this module are listed here. The namespace associated to the Classification module is te::cl.
50  To know more about it, see the te::cl namespace documentation.
51 */
52 
53 namespace te
54 {
55  /*!
56  \brief Namespace for classification module of TerraLib.
57  */
58  namespace cl
59  {
60  } // end namespace rp
61 } // end namespace te
62 
63 #endif // __TERRALIB_INTERNAL_CLASSIFICATION_H
MAP.h
MAP (Maximum a Posteriori) strategy for classification.
Config.h
Configuration flags for the Terrralib Classification module.
te
TerraLib.
Definition: AddressGeocodingOp.h:52
Utils.h
Utility functions for Classification.
MaxLikelihood.h
A maximum likelihood estimation strategy for classification (a.k.a. MaxVer in portuguese).
Enums.h
Enumerations related to the Classification module.
Exception.h
An exception class for the Classification module.
Dummy.h
Dummy classifier (just for testing purposes).
ISOData.h
ISOData strategy for classification.
Adaptors.h
Classifiers adaptors.
ROISet.h
A ROISet is a set of ROI's.
KMeans.h
KMeans strategy for classification.
ROI.h
A region of interest (often abbreviated ROI), is a selected subset of samples within a dataset identi...