OTB  9.0.0
Orfeo Toolbox
otbLibSVMMachineLearningModelFactory.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 otbLibSVMMachineLearningModelFactory_h
22 #define otbLibSVMMachineLearningModelFactory_h
23 
24 #include "itkObjectFactoryBase.h"
25 #include "itkImageIOBase.h"
26 
27 namespace otb
28 {
34 template <class TInputValue, class TTargetValue>
35 class ITK_EXPORT LibSVMMachineLearningModelFactory : public itk::ObjectFactoryBase
36 {
37 public:
40  typedef itk::ObjectFactoryBase Superclass;
41  typedef itk::SmartPointer<Self> Pointer;
42  typedef itk::SmartPointer<const Self> ConstPointer;
43 
45  const char* GetITKSourceVersion(void) const override;
46  const char* GetDescription(void) const override;
48 
50  itkFactorylessNewMacro(Self);
51 
53  itkTypeMacro(LibSVMMachineLearningModelFactory, itk::ObjectFactoryBase);
54 
56  static void RegisterOneFactory(void)
57  {
59  itk::ObjectFactoryBase::RegisterFactory(LibSVMFactory);
60  }
62 
63 protected:
65  ~LibSVMMachineLearningModelFactory() override = default;
66 
67 private:
68  LibSVMMachineLearningModelFactory(const Self&) = delete;
69  void operator=(const Self&) = delete;
70 };
71 
72 } // end namespace otb
73 
74 #ifndef OTB_MANUAL_INSTANTIATION
76 #endif
77 
78 #endif
otb::LibSVMMachineLearningModelFactory::Self
LibSVMMachineLearningModelFactory Self
Definition: otbLibSVMMachineLearningModelFactory.h:39
otb::LibSVMMachineLearningModelFactory::Superclass
itk::ObjectFactoryBase Superclass
Definition: otbLibSVMMachineLearningModelFactory.h:40
otb::LibSVMMachineLearningModelFactory::RegisterOneFactory
static void RegisterOneFactory(void)
Definition: otbLibSVMMachineLearningModelFactory.h:56
otb
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.
Definition: otbJoinContainer.h:32
otb::LibSVMMachineLearningModelFactory::ConstPointer
itk::SmartPointer< const Self > ConstPointer
Definition: otbLibSVMMachineLearningModelFactory.h:42
otb::LibSVMMachineLearningModelFactory::Pointer
itk::SmartPointer< Self > Pointer
Definition: otbLibSVMMachineLearningModelFactory.h:41
otb::LibSVMMachineLearningModelFactory::New
static Pointer New(void)
otbLibSVMMachineLearningModelFactory.hxx
otb::LibSVMMachineLearningModelFactory
Creation of an instance of an object SVMMachineLearningModel using the objects factory.
Definition: otbLibSVMMachineLearningModelFactory.h:35