SimpleITK  
sitkBSplineDecompositionImageFilter.h
Go to the documentation of this file.
1/*=========================================================================
2*
3* Copyright NumFOCUS
4*
5* Licensed under the Apache License, Version 2.0 (the "License");
6* you may not use this file except in compliance with the License.
7* You may obtain a copy of the License at
8*
9* http://www.apache.org/licenses/LICENSE-2.0.txt
10*
11* Unless required by applicable law or agreed to in writing, software
12* distributed under the License is distributed on an "AS IS" BASIS,
13* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14* See the License for the specific language governing permissions and
15* limitations under the License.
16*
17*=========================================================================*/
18#ifndef sitkBSplineDecompositionImageFilter_h
19#define sitkBSplineDecompositionImageFilter_h
20
21/*
22 * WARNING: DO NOT EDIT THIS FILE!
23 * THIS FILE IS AUTOMATICALLY GENERATED BY THE SIMPLEITK BUILD PROCESS.
24 * Please look at sitkImageFilterTemplate.h.in to make changes.
25 */
26
27#include <memory>
28
29#include "sitkBasicFilters.h"
30#include "sitkImageFilter.h"
31
32namespace itk::simple {
33
46 public:
48
51
55
58\
59
63 SITK_RETURN_SELF_TYPE_HEADER SetSplineOrder ( uint32_t SplineOrder ) { this->m_SplineOrder = SplineOrder; return *this; }
64
67 uint32_t GetSplineOrder() const { return this->m_SplineOrder; }
74 std::vector<double> GetSplinePoles() const { return this->m_SplinePoles; };
75
76
78 std::string GetName() const { return std::string ("BSplineDecompositionImageFilter"); }
79
81 std::string ToString() const;
82
83
85
86 Image Execute ( const Image& image1 );
87
88 private:
89
91
92 using MemberFunctionType = Image (Self::*)( const Image& image1 );
93 template <class TImageType> Image ExecuteInternal ( const Image& image1 );
94
95
97
98 std::unique_ptr<detail::MemberFunctionFactory<MemberFunctionType> > m_MemberFactory;
99
100
101 /* */
102 uint32_t m_SplineOrder{3u};
103
104 /* */
105 std::vector<double> m_SplinePoles{std::vector<double>()};
106
107
108 };
109
119
120 SITKBasicFilters_EXPORT Image BSplineDecomposition ( const Image& image1, uint32_t splineOrder = 3u );
121
123}
124#endif
std::unique_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
Image ExecuteInternal(const Image &image1)
The Image class for SimpleITK.
Definition sitkImage.h:77
typelist2::typelist< BasicPixelID< float >, BasicPixelID< double > > RealPixelIDTypeList
Image BSplineDecomposition(const Image &image1, uint32_t splineOrder=3u)
Calculates the B-Spline coefficients of an image. Spline order may be from 0 to 5.
#define SITKBasicFilters_EXPORT