OTB  10.0.0
Orfeo Toolbox
otbNormalBayesMachineLearningModel.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2005-2024 Centre National d'Etudes Spatiales (CNES)
3  *
4  * This file is part of Orfeo Toolbox
5  *
6  * https://www.orfeo-toolbox.org/
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  */
20 
21 #ifndef otbNormalBayesMachineLearningModel_h
22 #define otbNormalBayesMachineLearningModel_h
23 
24 #include "otbRequiresOpenCVCheck.h"
25 
26 #include "itkLightObject.h"
27 #include "itkFixedArray.h"
29 
30 #include "otbOpenCVUtils.h"
31 
32 namespace otb
33 {
34 template <class TInputValue, class TTargetValue>
35 class ITK_EXPORT NormalBayesMachineLearningModel : public MachineLearningModel<TInputValue, TTargetValue>
36 {
37 public:
41  typedef itk::SmartPointer<Self> Pointer;
42  typedef itk::SmartPointer<const Self> ConstPointer;
43 
44  typedef typename Superclass::InputValueType InputValueType;
45  typedef typename Superclass::InputSampleType InputSampleType;
46  typedef typename Superclass::InputListSampleType InputListSampleType;
47  typedef typename Superclass::TargetValueType TargetValueType;
49  typedef typename Superclass::TargetListSampleType TargetListSampleType;
50  typedef typename Superclass::ConfidenceValueType ConfidenceValueType;
51  typedef typename Superclass::ProbaSampleType ProbaSampleType;
53  itkNewMacro(Self);
56 
58  void Train() override;
59 
61  void Save(const std::string& filename, const std::string& name = "") override;
62 
64  void Load(const std::string& filename, const std::string& name = "") override;
65 
68 
70  bool CanReadFile(const std::string&) override;
71 
73  bool CanWriteFile(const std::string&) override;
75 
76 protected:
79 
81  ~NormalBayesMachineLearningModel() override = default;
82 
84  TargetSampleType DoPredict(const InputSampleType& input, ConfidenceValueType* quality = nullptr, ProbaSampleType* proba = nullptr) const override;
85 
87  void PrintSelf(std::ostream& os, itk::Indent indent) const override;
88 
89 private:
91  void operator=(const Self&) = delete;
92  cv::Ptr<cv::ml::NormalBayesClassifier> m_NormalBayesModel;
93 };
94 } // end namespace otb
95 
96 #ifndef OTB_MANUAL_INSTANTIATION
98 #endif
99 
100 #endif
MachineLearningModel is the base class for all classifier objects (SVM, KNN, Random Forests,...
MLMTargetTraits< TConfidenceValue >::ValueType ConfidenceValueType
itk::VariableLengthVector< double > ProbaSampleType
MLMSampleTraits< TInputValue >::SampleType InputSampleType
MLMTargetTraits< TTargetValue >::SampleType TargetSampleType
~NormalBayesMachineLearningModel() override=default
cv::Ptr< cv::ml::NormalBayesClassifier > m_NormalBayesModel
Superclass::TargetListSampleType TargetListSampleType
MachineLearningModel< TInputValue, TTargetValue > Superclass
NormalBayesMachineLearningModel(const Self &)=delete
void operator=(const Self &)=delete
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.