OTB  9.0.0
Orfeo Toolbox
otbKNearestNeighborsMachineLearningModelFactory.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 otbKNearestNeighborsMachineLearningModelFactory_h
22 #define otbKNearestNeighborsMachineLearningModelFactory_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 KNearestNeighborsMachineLearningModelFactory : 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(KNearestNeighborsMachineLearningModelFactory, itk::ObjectFactoryBase);
56 
58  static void RegisterOneFactory(void)
59  {
61  itk::ObjectFactoryBase::RegisterFactory(KNNFactory);
62  }
64 
65 protected:
68 
69 private:
71  void operator=(const Self&) = delete;
72 };
73 
74 } // end namespace otb
75 
76 #ifndef OTB_MANUAL_INSTANTIATION
78 #endif
79 
80 #endif
otb::KNearestNeighborsMachineLearningModelFactory::RegisterOneFactory
static void RegisterOneFactory(void)
Definition: otbKNearestNeighborsMachineLearningModelFactory.h:58
otb::KNearestNeighborsMachineLearningModelFactory::ConstPointer
itk::SmartPointer< const Self > ConstPointer
Definition: otbKNearestNeighborsMachineLearningModelFactory.h:44
otb::KNearestNeighborsMachineLearningModelFactory::Superclass
itk::ObjectFactoryBase Superclass
Definition: otbKNearestNeighborsMachineLearningModelFactory.h:42
otb
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.
Definition: otbJoinContainer.h:32
otbKNearestNeighborsMachineLearningModelFactory.hxx
otb::KNearestNeighborsMachineLearningModelFactory::New
static Pointer New(void)
otbRequiresOpenCVCheck.h
otb::KNearestNeighborsMachineLearningModelFactory::Self
KNearestNeighborsMachineLearningModelFactory Self
Definition: otbKNearestNeighborsMachineLearningModelFactory.h:41
otb::KNearestNeighborsMachineLearningModelFactory::Pointer
itk::SmartPointer< Self > Pointer
Definition: otbKNearestNeighborsMachineLearningModelFactory.h:43
otb::KNearestNeighborsMachineLearningModelFactory
Create an instance of KNearestNeighborsMachineLearningModel through the object factory.
Definition: otbKNearestNeighborsMachineLearningModelFactory.h:37