OTB  9.0.0
Orfeo Toolbox
otbNeuralNetworkMachineLearningModelFactory.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2005-2022 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 otbNeuralNetworkMachineLearningModelFactory_h
22 #define otbNeuralNetworkMachineLearningModelFactory_h
23 
24 #include "otbRequiresOpenCVCheck.h"
25 
26 #include "itkObjectFactoryBase.h"
27 #include "itkImageIOBase.h"
28 
29 namespace otb
30 {
36 template <class TInputValue, class TTargetValue>
37 class ITK_EXPORT NeuralNetworkMachineLearningModelFactory : public itk::ObjectFactoryBase
38 {
39 public:
42  typedef itk::ObjectFactoryBase Superclass;
43  typedef itk::SmartPointer<Self> Pointer;
44  typedef itk::SmartPointer<const Self> ConstPointer;
45 
47  const char* GetITKSourceVersion(void) const override;
48  const char* GetDescription(void) const override;
50 
52  itkFactorylessNewMacro(Self);
53 
55  itkTypeMacro(NeuralNetworkMachineLearningModelFactory, itk::ObjectFactoryBase);
56 
58  static void RegisterOneFactory(void)
59  {
61  itk::ObjectFactoryBase::RegisterFactory(Factory);
62  }
64 
65 protected:
67  ~NeuralNetworkMachineLearningModelFactory() override = default;
68 
69 private:
70  NeuralNetworkMachineLearningModelFactory(const Self&) = delete;
71  void operator=(const Self&) = delete;
72 };
73 
74 } // end namespace otb
75 
76 #ifndef OTB_MANUAL_INSTANTIATION
78 #endif
79 
80 #endif
otb::NeuralNetworkMachineLearningModelFactory::ConstPointer
itk::SmartPointer< const Self > ConstPointer
Definition: otbNeuralNetworkMachineLearningModelFactory.h:44
otb
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.
Definition: otbJoinContainer.h:32
otb::NeuralNetworkMachineLearningModelFactory
Create an instance of SVMMachineLearningModel through the object factory.
Definition: otbNeuralNetworkMachineLearningModelFactory.h:37
otb::NeuralNetworkMachineLearningModelFactory::Self
NeuralNetworkMachineLearningModelFactory Self
Definition: otbNeuralNetworkMachineLearningModelFactory.h:41
otbNeuralNetworkMachineLearningModelFactory.hxx
otbRequiresOpenCVCheck.h
otb::NeuralNetworkMachineLearningModelFactory::Pointer
itk::SmartPointer< Self > Pointer
Definition: otbNeuralNetworkMachineLearningModelFactory.h:43
otb::NeuralNetworkMachineLearningModelFactory::RegisterOneFactory
static void RegisterOneFactory(void)
Definition: otbNeuralNetworkMachineLearningModelFactory.h:58
otb::NeuralNetworkMachineLearningModelFactory::Superclass
itk::ObjectFactoryBase Superclass
Definition: otbNeuralNetworkMachineLearningModelFactory.h:42
otb::NeuralNetworkMachineLearningModelFactory::New
static Pointer New(void)