OTB  9.0.0
Orfeo Toolbox
otbCorrectPolygonFunctor.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 otbCorrectPolygonFunctor_h
22 #define otbCorrectPolygonFunctor_h
23 
24 #include "otbSimplifyPathFunctor.h"
25 #include "otbClosePathFunctor.h"
26 
27 namespace otb
28 {
29 
41 template <class TPolygon>
43 {
44 public:
45  typedef TPolygon PolygonType;
46  typedef typename PolygonType::Pointer PolygonPointerType;
47 
52  {
53  }
55  {
56  }
58 
59  inline PolygonPointerType operator()(const TPolygon* input)
60  {
62  SimplifyFunctorType simplifyFunctor;
63  CloseFunctorType closeFunctor;
64 
65  simplifyFunctor.SetTolerance(0.0);
66 
68  return closeFunctor(simplifyFunctor(input));
69  }
70 };
71 }
72 
73 #endif
otb::SimplifyPathFunctor
This filter performs a simplification of the input path.
Definition: otbSimplifyPathFunctor.h:54
otb::CorrectPolygonFunctor::CloseFunctorType
ClosePathFunctor< PolygonType, PolygonType > CloseFunctorType
Definition: otbCorrectPolygonFunctor.h:50
otb
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.
Definition: otbJoinContainer.h:32
otb::CorrectPolygonFunctor
This filter simplify and close the input polygon, making the last point equal to the first one.
Definition: otbCorrectPolygonFunctor.h:42
otb::ClosePathFunctor
This filter close the input path, making the last point equal to the first one.
Definition: otbClosePathFunctor.h:41
otb::CorrectPolygonFunctor::PolygonType
TPolygon PolygonType
Definition: otbCorrectPolygonFunctor.h:45
otb::CorrectPolygonFunctor::operator()
PolygonPointerType operator()(const TPolygon *input)
Definition: otbCorrectPolygonFunctor.h:59
otbClosePathFunctor.h
otb::CorrectPolygonFunctor::~CorrectPolygonFunctor
~CorrectPolygonFunctor()
Definition: otbCorrectPolygonFunctor.h:54
otb::CorrectPolygonFunctor::PolygonPointerType
PolygonType::Pointer PolygonPointerType
Definition: otbCorrectPolygonFunctor.h:46
otbSimplifyPathFunctor.h
otb::SimplifyPathFunctor::SetTolerance
void SetTolerance(double Tolerance)
Definition: otbSimplifyPathFunctor.h:62
otb::CorrectPolygonFunctor::SimplifyFunctorType
otb::SimplifyPathFunctor< PolygonType, PolygonType > SimplifyFunctorType
Definition: otbCorrectPolygonFunctor.h:49
otb::CorrectPolygonFunctor::CorrectPolygonFunctor
CorrectPolygonFunctor()
Definition: otbCorrectPolygonFunctor.h:51