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/KMeans.h"
36 #include "classification/MAP.h"
38 #include "classification/ROI.h"
39 #include "classification/ROISet.h"
40 #include "classification/Utils.h"
41 
42 /*!
43  \defgroup cl Classification
44 
45  \brief This module provides classes and functions with generic classification capabilities.
46 
47  Basically, the TerraLib Classification module contains several generic classification operations applied to any data type.
48  The main classes/concepts in this module are listed here. The namespace associated to the Classification module is te::cl.
49  To know more about it, see the te::cl namespace documentation.
50 */
51 
52 namespace te
53 {
54  /*!
55  \brief Namespace for classification module of TerraLib.
56  */
57  namespace cl
58  {
59  } // end namespace rp
60 } // end namespace te
61 
62 #endif // __TERRALIB_INTERNAL_CLASSIFICATION_H
Enumerations related to the Classification module.
A ROISet is a set of ROI&#39;s.
Configuration flags for the Terrralib Classification module.
A maximum likelihood estimation strategy for classification (a.k.a. MaxVer in portuguese).
TerraLib.
Dummy classifier (just for testing purposes).
Utility functions for Classification.
An exception class for the Classification module.
A region of interest (often abbreviated ROI), is a selected subset of samples within a dataset identi...
MAP (Maximum a Posteriori) strategy for classification.
Classifiers adaptors.
KMeans strategy for classification.