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"
37 #include "classification/ROI.h"
38 #include "classification/ROISet.h"
39 #include "classification/Utils.h"
40 
41 /*!
42  \defgroup cl Classification
43 
44  \brief This module provides classes and functions with generic classification capabilities.
45 
46  Basically, the TerraLib Classification module contains several generic classification operations applied to any data type.
47  The main classes/concepts in this module are listed here. The namespace associated to the Classification module is te::cl.
48  To know more about it, see the te::cl namespace documentation.
49 */
50 
51 namespace te
52 {
53  /*!
54  \brief Namespace for classification module of TerraLib.
55  */
56  namespace cl
57  {
58  } // end namespace rp
59 } // end namespace te
60 
61 #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.
URI C++ Library.
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.